29.05.2016, 10:34
Hi everyone i need a little help i don't know how to ban a player i have just founded that on the wiki
but me i want that :
thank for the help
PHP код:
public OnPlayerCommandText(playerid, cmdtext[])
{
if(strcmp(cmdtext, "/banme", true) == 0)
{
// Ban the player that types this command.
Ban(playerid);
return 1;
}
}
PHP код:
CMD:ban(playerid, params[])
{
if(IsPlayerAdmin(playerid))
{
if(IsPlayerConnected(playerid))
{
// here ban the player
}
else
{
SendClientMessage(playerid, 0xAA3333AA,"[ERREUR]Ce joueur n'est pas connectй.");
}
}
return 1;
}