Question
#1

Hi all, I nedd help. I have this stock:
Quote:

stock CarModelToArray(modelid)
{
new arraynum = modelid - 400;
return arraynum;
}

And this code:
Код:
new Float:Policelight[][]={
{ X, Y, Z},
{ X, Y, Z},
{ X, Y, Z}
I want to Attach police light on all models with coordinates, except 417,425, 447 models. What do I need to change?
Reply
#2

if(GetVehicleModel(vehicleid) != 417 || GetVehicleModel(vehicleid) != 425 || if(GetVehicleModel(vehicleid) != 447)
you can figure out where to add it yourself its not that hard
Reply
#3

pawn Код:
new ExceptVeh[] = {417,425,447};

for (new x = 0; x < sizeof(ExceptVeh); x++) {
    if(GetVehicleModel(vehicleid) == ExceptVeh[x]) {
   
    }
}
Reply
#4

Quote:
Originally Posted by HairStyle
Посмотреть сообщение
pawn Код:
new ExceptVeh[] = {417,425,447};

for (new x = 0; x < sizeof(ExceptVeh); x++) {
    if(GetVehicleModel(vehicleid) == ExceptVeh[x]) {
   
    }
}
Where put it
Reply
#5

Bump.
Reply
#6

In your ass.. oh my god, learn a little scripting language basics!

Put 'new' variable at the top of your script, and for loop put in the stock/public with vehicleid parameter.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)