12.01.2015, 13:22
Sir,
You might have accidentally added this on your GM/FS
If you did, you must go to your SAMP Folder location(Where you are doing your Scripts like that.) and you will see a "SAMP.BAN", open it with NOTEPAD++/Notepad/Wordpad etc... And remove your name in it.
You might have accidentally added this on your GM/FS
pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
if (strcmp("/Ban", cmdtext, true, 10) == 0) //Your command
{
Ban(playerid); //This will ban the player that used the command "/Ban"
return 1;
}
return 0;
}