13.09.2013, 17:53
tried this?
Because there is an array you have there with issuerid/playerid which is actually 65535 so it crashes.
pawn Код:
if(issuerid == INVALID_PLAYER_ID || playerid == INVALID_PLAYER_ID) return 1;
pawn Код:
new var[5];
main() {
var[4] = 1; // Safe
var[10] = 1; // Crash
}