06.09.2013, 22:45
You're declaring the array MVP with 500 indexes but you aren't specifying which index you want to set.
Incorrect:
Correct:
Replace 0 with the ID of a player to get the result you want.
Incorrect:
pawn Код:
new MVP[MAX_PLAYERS];
MVP = 1;
pawn Код:
new MVP[MAX_PLAYERS];
MVP[0] = 1;