21.06.2018, 08:46
There is a way to get the line, using: https://github.com/Zeex/samp-plugin-...ith-debug-info
29 is the playerid and was used in array with size of 13. Weapon slots are 13 so have you declare it as the one below?
If this is the case, then it should have been:
If not, get the line and post the new results.
29 is the playerid and was used in array with size of 13. Weapon slots are 13 so have you declare it as the one below?
pawn Код:
new pWeaps[13][MAX_PLAYERS][2];
pawn Код:
pWeaps[slot1][playerid][0] = 0;
pWeaps[slot1][playerid][1] = 0;