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;
}
.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
error 003: declaration of a local variable must appear in a compound block
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;
}
CMD:kick(playerid,params[]) { new id,name1[MAX_PLAYER_NAME], reason[35],name2[MAX_PLAYER_NAME], string[128]; if(PlayerInfo[playerid][pAdmin] < 1) return SCM(playerid, COLOR_WHITE,"You are not authorized to use this command"); if(sscanf(params,"uz",id,reason)) return SCM(playerid, COLOR_WHITE,"USAGE: /kick [playerid/partofname] [reason]"); if(!IsPlayerConnected(id)) return SCM(playerid, COLOR_WHITE,"Invalid player id"); else { GetPlayerName(playerid,name1,sizeof(name1)); GetPlayerName(id,name2,sizeof(name2)); format(string, sizeof(string),"AdmCmd: %s was kicked by %s, reason: %s",name2,name1,reason); SendClientMessageToAll(COLOR_LIGHTRED,string); Kick(id); } return 1; } |