22.01.2013, 00:08
I don't know why you're using an integer value in sscanf in the first place 0_o.
pawn Код:
CMD:bhstop(playerid, params[])
{
new name[MAX_PLAYER_NAME];
GetPlayerName(playerid, name, MAX_PLAYER_NAME);
if(strcmp(name, "Myusername", false) != 0) return SendClientMessage(playerid, COLOR_LIGHTBLUE, "* You need to be **!");
bhstop[playerid] = 1;
SendClientMessage(playerid, COLOR_LIGHTBLUE, "[ADMIN]: You have stopped the Bunnyhopper!");
return 1;
}