how solvet that
#4

Quote:
Originally Posted by BLACK-RIDER-1692
793
Код:
 };
And your first line of this array is something like that right?
pawn Код:
new CarSpawns[145][eCars] = {
This problem means that you dont have the right number in the array(145 on my example). Make sure its the right number. If you have 3lines, then you need to put 3.

FALSE
pawn Код:
new CarSpawns[2][eCars] = {
    {471,1995.2136,-1089.8727,24.1279,140.3409},//carid 188 //Newbies quad
    {471,1999.7130,-1089.7423,24.1197,126.6980},//Newbies quad
    {551,1694.7080,-1501.7454,13.1675,357.8150}//Another random vehicle
    };
FALSE
pawn Код:
new CarSpawns[4][eCars] = {
    {471,1995.2136,-1089.8727,24.1279,140.3409},//carid 188 //Newbies quad
    {471,1999.7130,-1089.7423,24.1197,126.6980},//Newbies quad
    {551,1694.7080,-1501.7454,13.1675,357.8150}//Another random vehicle
    };
CORRECT
pawn Код:
new CarSpawns[3][eCars] = {
    {471,1995.2136,-1089.8727,24.1279,140.3409},//carid 188 //Newbies quad
    {471,1999.7130,-1089.7423,24.1197,126.6980},//Newbies quad
    {551,1694.7080,-1501.7454,13.1675,357.8150}//Another random vehicle
    };
Reply


Messages In This Thread
how solvet that - by BLACK-RIDER-1692 - 28.08.2009, 12:24
Re: how solvet that - by Dark_Kostas - 28.08.2009, 12:30
Re: how solvet that - by BLACK-RIDER-1692 - 28.08.2009, 12:33
Re: how solvet that - by Dark_Kostas - 28.08.2009, 12:43
Re: how solvet that - by BLACK-RIDER-1692 - 28.08.2009, 12:48
Re: how solvet that - by Andom - 28.08.2009, 12:52
Re: how solvet that - by Jefff - 28.08.2009, 12:53
Re: how solvet that - by BLACK-RIDER-1692 - 28.08.2009, 12:54
Re: how solvet that - by Dark_Kostas - 28.08.2009, 12:57
Re: how solvet that - by Jefff - 28.08.2009, 12:57

Forum Jump:


Users browsing this thread: 1 Guest(s)