CMD:ekk(playerid, params[])
{
new id, reason[124], string[128], name[24];
if(sscanf(params[], "us[128]", id)) return SendClientMessage(playerid, RED, "Usage: /ekk [id] [reason]");
if(adminlevel[playerid] > 2)
{
if(GetPlayerVirtualWorld(id) != 9) return SendClientMessage(playerid, RED, "Player is not in DDay!");
SetPlayerVirtualWorld(playerid, 0);
GetPlayerName(id, name, 24);
format(string, sizeof string, "%s has been kicked from the DDay event for %s",name,reason);
SendClientMessageToAll(RED, string);
}
else return SendClientMessage(playerid, RED, "You can't use this!");
return 1;
}
if(!strcmp(cmdtext, "/ekk", true, 4))
new id, reason[124], string[128], name[24];
if(sscanf(params[], "us[128]", id)) return SendClientMessage(playerid, RED, "Usage: /ekk [id] [reason]");
if(adminlevel[playerid] > 2)
{
if(GetPlayerVirtualWorld(id) != 9) return SendClientMessage(playerid, RED, "Player is not in DDay!");
SetPlayerVirtualWorld(playerid, 0);
GetPlayerName(id, name, 24);
format(string, sizeof string, "%s has been kicked from the DDay event for %s",name,reason);
SendClientMessageToAll(RED, string);
}
else return SendClientMessage(playerid, RED, "You can't use this!");
return 1;
Wtf, sometimes I really dunno why I am doing something!
I made you the whole thing and instead of giving me a rep you give him?^^ Nothing against you, Michael! |
public OnPlayerCommandText(playerid, cmdtext[])
{
if(!strcmp(cmdtext, "/ekk", true, 4))
new id, reason[124], string[128], name[24];
if(sscanf(params[], "us[128]", id)) return SendClientMessage(playerid, RED, "Usage: /ekk [id] [reason]");
if(adminlevel[playerid] > 2)
{
if(GetPlayerVirtualWorld(id) != 9) return SendClientMessage(playerid, RED, "Player is not in DDay!");
SetPlayerVirtualWorld(playerid, 0);
GetPlayerName(id, name, 24);
format(string, sizeof string, "%s has been kicked from the DDay event for %s",name,reason);
SendClientMessageToAll(RED, string);
}
else return SendClientMessage(playerid, RED, "You can't use this!");
return 1;
{
return 0;
}
C:\Users\Alex\Desktop\Otros\CodSamp\codsamp_aw\filterscripts\AntiHH.pwn(92) : error 003: declaration of a local variable must appear in a compound block
C:\Users\Alex\Desktop\Otros\CodSamp\codsamp_aw\filterscripts\AntiHH.pwn(92) : warning 217: loose indentation
C:\Users\Alex\Desktop\Otros\CodSamp\codsamp_aw\filterscripts\AntiHH.pwn(92) : error 017: undefined symbol "id"
C:\Users\Alex\Desktop\Otros\CodSamp\codsamp_aw\filterscripts\AntiHH.pwn(92) : warning 215: expression has no effect
C:\Users\Alex\Desktop\Otros\CodSamp\codsamp_aw\filterscripts\AntiHH.pwn(92) : error 001: expected token: ";", but found "]"
C:\Users\Alex\Desktop\Otros\CodSamp\codsamp_aw\filterscripts\AntiHH.pwn(92) : fatal error 107: too many error messages on one line
Compilation aborted.Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
4 Errors.
public OnPlayerCommandText(playerid, cmdtext[])
{
if(!strcmp(cmdtext, "/ekk", true, 4)) {
new id, reason[124], string[128], name[24];
if(sscanf(params[], "us[128]", id)) return SendClientMessage(playerid, RED, "Usage: /ekk [id] [reason]");
if(adminlevel[playerid] > 2)
{
if(GetPlayerVirtualWorld(id) != 9) return SendClientMessage(playerid, RED, "Player is not in DDay!");
SetPlayerVirtualWorld(playerid, 0);
GetPlayerName(id, name, 24);
format(string, sizeof string, "%s has been kicked from the DDay event for %s",name,reason);
SendClientMessageToAll(RED, string);
}
else return SendClientMessage(playerid, RED, "You can't use this!");
return 1;
}
return 0;
}
Wtf, sometimes I really dunno why I am doing something!
I made you the whole thing and instead of giving me a rep you give him?^^ Nothing against you, Michael! |