Array with float and integer ?
#7

Quote:
Originally Posted by dominik523
Посмотреть сообщение
@CutX
Why would you add Float tag to every item in the array since you added the tag to the array's name?
cuz tag mismatches pop up if we don't do that.
the array has the float tag meaning that there should be floating point numbers.
but 2 ain't a float, so we're kinda "type casting" it

if i were to remove the tag from the whole array, it'd look like:
pawn Код:
new RandomCarSpawn[][] = //now we have to add the tag 4 times every row
{//instead of just three and the same goes when using it
    {427,_:2239.6694,_:2441.9373,_:3.4053,_:88.4534,0,1},
    {427,_:2239.6694,_:2441.9373,_:3.4053,_:88.4534,0,1},
    {427,_:2239.6694,_:2441.9373,_:3.4053,_:88.4534,0,1},
    {427,_:2239.6694,_:2441.9373,_:3.4053,_:88.4534,0,1},
    {427,_:2239.6694,_:2441.9373,_:3.4053,_:88.4534,0,1}
    //and so on for 80 cars
};

public OnFilterScriptInit()
{

    for(new i=0,x; i<80; i++)
    {
        x = random(sizeof RandomCarSpawn);// 4 times _: instead of just 3 LAZYNESS :P
        AddStaticVehicle(RandomCarSpawn[x][0],
                         _:RandomCarSpawn[x][1],
                         _:RandomCarSpawn[x][2],
                         _:RandomCarSpawn[x][3],
                         _:RandomCarSpawn[x][4],
                         RandomCarSpawn[x][5],
                         RandomCarSpawn[x][6]);
    }
   
    return 1;
}
Reply


Messages In This Thread
Array with float and integer ? - by DiamantEspace18 - 03.01.2015, 17:22
Re: Array with float and integer ? - by Lordzy - 03.01.2015, 17:27
AW: Array with float and integer ? - by CutX - 03.01.2015, 17:32
Re : Array with float and integer ? - by DiamantEspace18 - 03.01.2015, 17:44
Re: Array with float and integer ? - by dominik523 - 03.01.2015, 17:45
Re : Array with float and integer ? - by DiamantEspace18 - 03.01.2015, 17:48
AW: Re: Array with float and integer ? - by CutX - 03.01.2015, 17:53
Re : Array with float and integer ? - by DiamantEspace18 - 03.01.2015, 18:05
Re: Array with float and integer ? - by Mauzen - 03.01.2015, 18:19
Re : Array with float and integer ? - by DiamantEspace18 - 03.01.2015, 18:24

Forum Jump:


Users browsing this thread: 1 Guest(s)