04.10.2018, 11:47
Quote:
|
My guess is that you are looping trough all players.
Okay so lets imagine MAX_PLAYERS is 50 for now. So you are looping 50 times. When you have this: PHP код:
The thing is that it is looking for FPS[31] it the 31th loop while it isnt there. Same for others such as: gAirdrop[i][AIRDROP_EXIST] What you could do is increasing their sizes, which i do not recommend or you could create a new loop for them like: PHP код:
|
pawn Код:
new rank = GetPlayerRank(playerid);
Код:
format(string, sizeof(string),"~w~Rank:%s",gRank[rank][r_name]);
If you want to know the exact line, you can use -d3 flag. Learn more here: https://github.com/Zeex/samp-plugin-...ith-debug-info


