if(strpos($message, "/fake") === 0 || strpos($message, ".fake") === 0){
addUser($userId, $username);
addChat($chat_id, $title);
$credit = balance($userId);
$userPlan = plan($userId);
if ($credit <=0){
bot('sendmessage',[
'chat_id'=>$chat_id,
'text'=>"Your credit over my boy
Contact av7271 to buy.",
'parse_mode' => 'html',
'disable_web_page_preview' => 'true',
'reply_to_message_id'=> $message_id
]);
}
else{
if (!isBanned($userId) && !isMuted($userId) && isApprove($userId) && ($chattype != 'private' || checkUserInChannel($userId) || $userId == $config['adminID'])) {
$antispam = antispamCheck($userId);
if($antispam != False){
bot('sendmessage',[
'chat_id'=>$chat_id,
'text'=>"[ANTI SPAM] Try again after $antispams.",
'parse_mode'=>'html',
'reply_to_message_id'=> $message_id
]);
return;
}else{
$messageidtoedit1 = bot('sendmessage',[
'chat_id'=>$chat_id,
'text'=>"CHECKING..๐ฅ",
'parse_mode'=>'html',
'reply_to_message_id'=> $message_id
]);
$messageidtoedit = getstr(json_encode($messageidtoedit1), '"message_id":', ',');
$code =trim(substr($message, 5));
$Fake= fake($code);
###END OF CHECKER PART###
bot('editMessageText',[
'chat_id'=>$chat_id,
'message_id'=>$messageidtoedit,
'text'=>"CHECKING..๐ฉ",
'parse_mode'=>'html',
'disable_web_page_preview'=>'true'
]);
$r=rstr();
$email="$r@teleworm.us";
bot('editMessageText',[
'chat_id'=>$chat_id,
'message_id'=>$messageidtoedit,
'text' => "
Fake Info
First name: {$Fake['first']}
Last name: {$Fake['last']}
Street: {$Fake['street']}
City: {$Fake['city']}
State: {$Fake['state']}
Country: {$Fake['country']}
Postcode: {$Fake['zip']}
Phone: {$Fake['phone']}
Email: $email
Email Message: Get Message
โโโโโโโโโโโโโโโ
Credit left -ยป $credit
User Type $userPlan
Checked By $firstname
Bot By: av7271'",
'parse_mode'=>'html',
'reply_to_message_id'=> $message_id,
'disable_web_page_preview'=>'true']);}
}
}
}