Define a truck in stock.
#3

Kinda like this:

pawn Код:
new truck[15]; // [15] as you have 15 trucks
new IsTruck[MAX_VEHICLES]; // a per-vehicle global variable to know whether a vehicle is a truck or not

truck[0] = AddStaticVehicle(499,2173.2202,-2636.8081,13.5392,158.1144,0,0); //
truck[1] = AddStaticVehicle(499,2180.8071,-2636.3555,13.5342,163.4434,0,0); //
truck[2] = AddStaticVehicle(499,2203.1370,-2633.4329,13.5391,269.3954,0,0); //
truck[3] = AddStaticVehicle(499,2203.8774,-2643.7749,13.5436,267.2371,0,0); //
truck[4] = AddStaticVehicle(499,2246.7744,-2675.3079,13.5442,0.2894,0,0); //
truck[5] = AddStaticVehicle(499,2250.3147,-2675.2898,13.5448,0.2894,0,0); //
truck[6] = AddStaticVehicle(499,2253.5308,-2675.2732,13.5453,0.2894,0,0); //
truck[7] = AddStaticVehicle(499,2258.2942,-2675.2493,13.5461,0.2894,0,0); //
truck[8] = AddStaticVehicle(499,2263.0957,-2675.2251,13.5469,0.2894,0,0); //
truck[9] = AddStaticVehicle(499,2247.6970,-2650.8284,13.5422,92.7948,0,0); //
truck[10] = AddStaticVehicle(499,2247.3877,-2644.5051,13.5842,92.7948,0,0); //
truck[11] = AddStaticVehicle(499,2247.0117,-2636.8062,13.6353,92.7948,0,0); //
truck[12] = AddStaticVehicle(499,2246.6838,-2630.0957,13.6799,92.7948,0,0); //
truck[13] = AddStaticVehicle(499,2210.8445,-2597.9141,13.5346,268.8778,0,0); //
truck[14] = AddStaticVehicle(499,2204.6855,-2569.6677,13.5392,267.5470,0,0); //

// then under OnGameModeInit or OnFilterScriptInit if it's a filterscript
for(new i = 0; i < sizeof(truck); i ++) // loops through all the trucks we made
{
    IsTruck[i] = 1; // sets them as trucks
}

// a stock to check if a vehicle is truck
stock IsVehicleTruck(vehicleid)
{
    if(IsTruck[vehicleid] == 1) // if the vehicleid is a truck here all the trucks we made should be because of the loop we made above
        return 1; // return 1 means that's true
    // if the above part didn't get executed or wasn't true (Action below)
    return 0; // return 0 means that's false
}
Then you can easily use the function we made IsVehicleTruck() to check vehicles, examples:

pawn Код:
if(IsVehicleTruck(vehicleid))
{
    // vehicleid is a truck, do something!
}

if(!IsVehicleTruck(vehicleid))
{
    // vehicleid is not a truck, do something!
}
Reply


Messages In This Thread
Define a truck in stock. - by Why - 21.07.2012, 22:13
Re: Define a truck in stock. - by Steven82 - 21.07.2012, 22:24
Re: Define a truck in stock. - by [KHK]Khalid - 21.07.2012, 22:30
Re: Define a truck in stock. - by Why - 21.07.2012, 22:39
Re: Define a truck in stock. - by [KHK]Khalid - 21.07.2012, 22:49
Re: Define a truck in stock. - by Why - 21.07.2012, 22:51

Forum Jump:


Users browsing this thread: 1 Guest(s)