15.11.2018, 17:51
You're using GetPlayerName before sscanf assigns the id variable, that's why you're getting player id 0 everytime you run the command.
PHP код:
new
id,
player[MAX_PLAYER_NAME]
;
if (sscanf(params, "u", id)) return SendClientMessage(playerid, -1, "INFO:Foloseste /kick [NAME/ID]");
GetPlayerName(id, player, sizeof player);