13.08.2013, 17:36
Do all of your admin commands have a similar structure? I'm going to assume that SOMETHING other than the sscanf line in your commands is messing it all up. Post some of the commands for crying out loud- quit being so freaking difficult.
#e:
Replace that, with this:
#e:
pawn Код:
if(sscanf(params, "u", target)) return SCM(playerid, -1, "{F70505}Usage: {FFFFFF}/get [playerid]");
else if(target == INVALID_PLAYER_ID) return SCM(playerid, COLOR_ORANGE, "Enter a valid player ID/name!");
pawn Код:
if(sscanf(params, "u", target)) return SCM(playerid, -1, "{F70505}Usage: {FFFFFF}/get [playerid]");
if(target == INVALID_PLAYER_ID) return SCM(playerid, COLOR_ORANGE, "Enter a valid player ID/name!");

