Могу вам представить из моего гейммода ещё один бот! [pwn]//----------- [Systema De BoT] ------------------
new Serverbot;
new BotMessages[5][256] =
{
{"Текст"},
{"Текст"},
{"Текст"},
{"Текст"},
{"Текст"}
};
//-------------- [] ------------------
forward SendPlayerFormattedText(playerid, const str[], define);
forward SetupPlayerForClassSelection(playerid);
forward BotMSGToAll (playerid);
forward InfiniteLife(playerid);
//---------------------------------------------------------
public BotMSGToAll(playerid)
{
if(Serverbot < 33)
{
Serverbot++;
}
else
{
Serverbot = 1;
}
SendClientMessageToAll(COLOR_GREEN,BotMessages[Serverbot]);
printf("Mensaje Del Bot: %s",BotMessages[Serverbot]);
printf(" ");
}
[/pwn]