? مخصوص بیس Sql
✅ این تیکه کد رو قبل از استارت بزارید :
if (file_exists('status') and !in_array($from_id, $admin))
return bot('sendmessage',['chat_id'=>$chat_id,
'text'=>"ربات موقتا خاموش شده است",
]);
✅ کد های کنترل خاموش و روشن کردن ربات :
elseif ($text == 'خاموش' and in_array($from_id, $admin)){
if(!file_exists('status'){
bot('sendmessage',[
'chat_id'=>$chat_id,
'text'=>"ربات با موفقیت خاموش شد.",
]);
touch('status');
$connect->query("UPDATE user SET step = 'none' WHERE id = '$from_id' LIMIT 1");
}else{
bot('sendmessage',['chat_id'=>$chat_id,
'text'=>"ربات از قبل خاموش بوده است.",
]);
$connect->query("UPDATE user SET step = 'none' WHERE id = '$from_id' LIMIT 1");
}}
elseif ($text == 'روشن' and in_array($from_id, $admin)){
if(file_exists('status'){
bot('sendmessage',[
'chat_id'=>$chat_id,
'text'=>"ربات با موفقیت روشن شد.",
]);
unlink('status');
$connect->query("UPDATE user SET step = 'none' WHERE id = '$from_id' LIMIT 1");
}else{
bot('sendmessage',['chat_id'=>$chat_id,
'text'=>"ربات از قبل روشن بوده است.",
]);
$connect->query("UPDATE user SET step = 'none' WHERE id = '$from_id' LIMIT 1");
}}