SA-MP Forums Archive
array applyin - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: array applyin (/showthread.php?tid=111298)



array applyin - patchkinson - 30.11.2009

Whats wrong with this? i dont remember how to apply an array there very well
its all in pastebin(error,code etc..)
http://pawn.pastebin.com/m42427de6


Re: array applyin - bigcomfycouch - 01.12.2009

pawn Код:
new rand1 = random(sizeof(randomcolors));
    new rand2 = random(sizeof(randomcolors));
    AddStaticVehicle(522,-769.0129,-1568.9924,130.6875,9.0024,randomcolors[rand1],randomcolors[rand2]);
Your array format also looks irregular to me. Quotation marks are used for strings, not values.

Код:
new randomcolors[][] =
{
	{0},
	{1},
	{2},
	{3},
	{4},
	{5},
	{6},
	{7},
	{8},
	{9},
	{10},
	{11},
	{12},
	{13},
	{14},
	{15},
	{16},
	{17},
	{18},
	{19},
	{20},
	{21},
	{22},
	{23},
	{24},
	{25},
	{26},
	{27},
	{28},
	{29},
	{30},
	{126}
};



Re: array applyin - patchkinson - 01.12.2009

yeah thanks
thanks for helpin me (the noob here ) xD



Re: array applyin - patchkinson - 01.12.2009

pawn Код:
new rand1 = random(sizeof(randomcolors));
new rand2 = random(sizeof(randomcolors));
new randomcolors[] =
{
    {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,126};
};
pawn Код:
AddStaticVehicle(522,-769.0129,-1568.9924,130.6875,9.0024,randomcolors[rand1],randomcolors[rand2]); // bugmountain
And While Compiling: Pawn Compiler library has stopped working
windows can check online for a solution the the problem,,
options: Check online for a solution and close program
Close the Program


:OO!


Re: array applyin - -8oHd4N- - 01.12.2009

new rand1 = random(sizeof(randomcolors));
new rand2 = random(sizeof(randomcolors));
new randomcolors[] =
{ - DELETE
{0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19 ,20,21,22,23,24,25,26,27,28,29,30,126};
};


Re: array applyin - smeti - 01.12.2009

Quote:
Originally Posted by -8oHd4N-
new rand1 = random(sizeof(randomcolors));
new rand2 = random(sizeof(randomcolors));
new randomcolors[] =
{ - DELETE
{0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19 ,20,21,22,23,24,25,26,27,28,29,30,126};
};
new rand1 = random(sizeof(randomcolors));
new rand2 = random(sizeof(randomcolors));
new randomcolors[] =
{ - DELETE
{0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19 ,20,21,22,23,24,25,26,27,28,29,30,126};
}; - DELETE



Код:
new randomcolors[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 126};
AddStaticVehicle(522,-769.0129,-1568.9924,130.6875,9.0024,randomcolors[random(sizeof(randomcolors))],randomcolors[random(sizeof(randomcolors))]); // bugmountain



Re: array applyin - patchkinson - 01.12.2009

;O
EDIT: Still same error
if anyone wants to teamviewer
first add ma xfire: patchkinson


Re: array applyin - Daniel_Truk - 01.12.2009

You can delete the whole thing

use
pawn Код:
AddStaticVehicle(522,-769.0129,-1568.9924,130.6875,9.0024,-1.-1); // bugmountain
 
instead of

AddStaticVehicle(522,-769.0129,-1568.9924,130.6875,9.0024,randomcolors[rand1],randomcolors[rand2]); // bugmountain



Re: array applyin - miokie - 01.12.2009

Quote:
Originally Posted by Cake.
You can delete the whole thing

use
pawn Код:
AddStaticVehicle(522,-769.0129,-1568.9924,130.6875,9.0024,-1.-1); // bugmountain
 
instead of

AddStaticVehicle(522,-769.0129,-1568.9924,130.6875,9.0024,randomcolors[rand1],randomcolors[rand2]); // bugmountain
I think he only wants certain colors, thats why he created an array.


Re: array applyin - patchkinson - 01.12.2009

-_-"
What i want is those colors yes, but i want them to be random
who in hell can help me get PAWN compilin with those Pawn Library errors=!!