18.04.2011, 16:32
You issues are here:
Because OnPlayerDeath is a native callback (meaning it already exists), you don't have to declare(forward) it. Also you have a misplaced semicolon (';') after this line
pawn Код:
forward OnPlayerDeath(playerid, killerid, reason);
public OnPlayerDeath(playerid, killerid, reason);
pawn Код:
public OnPlayerDeath(playerid, killerid, reason);//This semicolon should not exist