17.04.2012, 16:43
Sup guys,
I was creating a /aduty command for my cops and robber server,
but the playername isnt giving
String :
No errors.
Ingame :
It isnt giving the name of the admin :S
Full command :
Hope you guys can help me
I was creating a /aduty command for my cops and robber server,
but the playername isnt giving
Код:
ADMIN [Playername] is now [OFF] admin duty
No errors.
Код:
format(string, 200, "ADMIN %s(%d) is now [OFF] admin duty", pname, playerid);
It isnt giving the name of the admin :S
Full command :
Код:
cmd(aduty, playerid, params[]) { new ID; new string[120]; new pname[240]; if(GetPVarInt(playerid, "AdminLevel") == 0) return 0; if(GetPVarInt(playerid, "AdminMode") == 1) { SetPlayerHealth(playerid, 100); SetPlayerArmour(playerid, 100); ResetPlayerWeapons(playerid); GivePlayerTeamWeapons(playerid); SetPlayerColor(playerid, 0xFAFAFAFF); SetPlayerSkin(playerid, 115); format(string, 200, "ADMIN %s(%d) is now [OFF] admin duty", pname, playerid); SendClientMessageToAll(COLOR_ADMIN, string); SetPVarInt(playerid, "AdminMode", 0); return 1; }