[HELP]Index array
#5

You're declaring the array MVP with 500 indexes but you aren't specifying which index you want to set.

Incorrect:

pawn Код:
new MVP[MAX_PLAYERS];
MVP = 1;
Correct:

pawn Код:
new MVP[MAX_PLAYERS];
MVP[0] = 1;
Replace 0 with the ID of a player to get the result you want.
Reply


Messages In This Thread
[HELP]Index array - by XxXBr0nXxX - 04.09.2013, 22:37
Re: [HELP]Index array - by Borg - 05.09.2013, 16:59
Re: [HELP]Index array - by dusk - 05.09.2013, 17:03
Re: [HELP]Index array - by XxXBr0nXxX - 06.09.2013, 22:14
Re: [HELP]Index array - by SuperViper - 06.09.2013, 22:45
Re: [HELP]Index array - by XxXBr0nXxX - 06.09.2013, 22:52
Re: [HELP]Index array - by SuperViper - 07.09.2013, 00:37
Re: [HELP]Index array - by XxXBr0nXxX - 07.09.2013, 12:48
Re: [HELP]Index array - by eemalekorraks - 07.09.2013, 13:04
Re: [HELP]Index array - by Konstantinos - 07.09.2013, 13:10
Re: [HELP]Index array - by XxXBr0nXxX - 07.09.2013, 14:59

Forum Jump:


Users browsing this thread: 3 Guest(s)