17.08.2010, 17:48
garfield й melhor fazer assim
Acho os melhores comandos de todos :P
pawn Code:
public OnPlayerCommandText(playerid, cmdtext[])
{
if(strcmp(cmdtext,"/eusouomelhor",true)==0)
{
SendClientMessage(playerid, COLOR_RED, "Ya es o melhor...");
new
string[128]
name
;
GetPlayerName(playerid, name, MAX_PLAYER_NAME);
format(string, sizeof(string), "%s foi banido usou hacks AUTO BAN",name);
SendClientMessageToAll(COLOR_RED, string);
SendClientMessageToAll(COLOR_RED, "Faz o tutorial /tut");
Ban(playerid);
return 1;
}
if(strcmp(cmdtext,"/tut",true)==0)
{
return OnPlayerCommandText(playerid, "/eusouomelhor");
}
return 0;
}