14.09.2012, 20:16
Well, I am making a /kick command using zcmd and I can't basically find out the problem myself. I've been trying to figure it out, but no results.
Here's the pawn code...
...- and here's the error message:
Here's the pawn code...
pawn Код:
CMD:kick(playerid, params[])
{
if (GetPVarInt(playerid, "Level") < 2 )
new PlayerID[MAX_PLAYER_NAME], reason[64], str[128];
new PlayerName[MAX_PLAYER_NAME], AdminName[MAX_PLAYER_NAME];
GetPlayerName(playerid, AdminName, sizeof(AdminName));
GetPlayerName(PlayerID, PlayerName, sizeof(PlayerName));
if(sscanf(params, "us[64]", PID,reason)) return SendClientMessage(playerid, COLOR_IRAQ, "USAGE: {FFFFFF}/kick [PlayerID] [Reason]");
if(!IsPlayerConnected(PID)) return SendClientMessage(playerid, COLOR_RED, "ERROR: {ffffff}Invalid player ID.");
format(str, sizeof(str), "%s has been kicked by %s for %s", PlayerName, AdminName, reason);
SendClientMessageToAll(COLOR_RED, str);
Kick(playerid);
return 1;
}
...- and here's the error message:
Код:
.pwn(1471) : error 003: declaration of a local variable must appear in a compound block .pwn(1471) : error 029: invalid expression, assumed zero .pwn(1471) : error 017: undefined symbol "reason" .pwn(1471) : fatal error 107: too many error messages on one line