mirror of
https://github.com/danog/AltervistaUserBot.git
synced 2024-11-30 04:19:15 +01:00
62 lines
910 B
PHP
62 lines
910 B
PHP
|
<?php
|
||
|
|
||
|
/*
|
||
|
QUESTO FILE SERVE PER AVERE SEPARATI I COMANDI DELL'USERBOT
|
||
|
DAI FILE BASE DI FUNZIONAMENTO DELLO STESSO
|
||
|
*/
|
||
|
|
||
|
if(isset($userID) && in_array($userID, $lista_admin)) $isadmin = true;
|
||
|
else $isadmin = false;
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
if(isset($msg) && isset($chatID))
|
||
|
{
|
||
|
if($isadmin)
|
||
|
{
|
||
|
if($msg == "!on")
|
||
|
{
|
||
|
sm($chatID, "Hello world, I'm alive.");
|
||
|
}
|
||
|
|
||
|
if(stripos($msg, "!say ")===0)
|
||
|
{
|
||
|
sm($chatID, explode(" ", $msg, 2)[1]);
|
||
|
}
|
||
|
|
||
|
if($msg == "!off" and (time() - $lastser) > 5)
|
||
|
{
|
||
|
sm($chatID, "Mi spengo.");
|
||
|
exit;
|
||
|
}
|
||
|
|
||
|
if(stripos($msg, "!join ")===0)
|
||
|
{
|
||
|
joinChat(explode(" ", $msg, 2)[1], $chatID);
|
||
|
}
|
||
|
|
||
|
if($msg == "!leave" && stripos($chatID, "-100")===0)
|
||
|
{
|
||
|
abbandonaChat($chatID);
|
||
|
}
|
||
|
//ALTRI COMANDI RISERVATI AGLI ADMIN
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
//COMANDI DESTINATI AL PUBBLICO
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
}
|