29.10.2011, 17:39
not an really error. it is a warning. here's the error"
C:\Program Files (x86)\Rockstar Games\SAMP server\filterscripts\kill_command.pwn(102) : warning 225: unreachable code
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
1 Warning.
command:
the error is in the /heal command in if (IsPlayerAdmin(playerid)) return 1;
C:\Program Files (x86)\Rockstar Games\SAMP server\filterscripts\kill_command.pwn(102) : warning 225: unreachable code
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
1 Warning.
command:
Код:
public OnPlayerCommandText(playerid, cmdtext[]) { if (strcmp("/kill", cmdtext, true, 5) == 0) { SetPlayerHealth(playerid, 0); return 1; } if (strcmp("/heal", cmdtext, true, 5) == 0) if (IsPlayerAdmin(playerid)) return 1; { SetPlayerHealth(playerid, 100); return 1; } return 0; }