SetVehicleVirtualWorld??!!
#20

Quote:
Originally Posted by Matthias_
Посмотреть сообщение
Why not use a simple array?

pawn Код:
new aVehicles[5];

aVehicles[0] = AddStaticVehicle(...);
aVehicles[1] = AddStaticVehicle(...);
aVehicles[2] = AddStaticVehicle(...);
aVehicles[3] = AddStaticVehicle(...);
aVehicles[4] = AddStaticVehicle(...);

for(i = 0; i < 6; i++)
{
   SetVehicleVirtualWorld(aVehicles[i], 3);
}
Wouldn't it make more sense to use a couple of variables to determine the first vehicle and the last and just loop through the IDs based on them and then set it to the virtual world instead of assigning each and every vehicle to an array?

pawn Код:
v_VehicleWorlds[0] = AddStaticVehicle(...);
AddStaticVehicle(...);
AddStaticVehicle(...);
v_VehicleWorlds[1] = AddStaticVehicle(...);

for(new vid = v_VehicleWorlds[0]; vid < v_VehicleWorlds[1]; vid++)
{
    SetVehicleVirtualWorld(vid, 1);
}
Reply


Messages In This Thread
SetVehicleVirtualWorld??!! - by Sir_bomber - 06.07.2010, 02:49
Re: SetVehicleVirtualWorld??!! - by mprofitt - 06.07.2010, 02:56
Re: SetVehicleVirtualWorld??!! - by Sir_bomber - 06.07.2010, 03:05
Re: SetVehicleVirtualWorld??!! - by Sir_bomber - 06.07.2010, 03:07
Re: SetVehicleVirtualWorld??!! - by Kayla.S - 06.07.2010, 03:47
Re: SetVehicleVirtualWorld??!! - by Sir_bomber - 06.07.2010, 03:47
Re: SetVehicleVirtualWorld??!! - by Sir_bomber - 06.07.2010, 04:15
Re: SetVehicleVirtualWorld??!! - by Kayla.S - 06.07.2010, 04:36
Re: SetVehicleVirtualWorld??!! - by Toni - 06.07.2010, 04:54
Re: SetVehicleVirtualWorld??!! - by Sir_bomber - 06.07.2010, 05:05
Re: SetVehicleVirtualWorld??!! - by Sir_bomber - 06.07.2010, 05:07
Re: SetVehicleVirtualWorld??!! - by VirSpectorX - 06.07.2010, 05:37
Re: SetVehicleVirtualWorld??!! - by CaHbKo - 06.07.2010, 08:04
Re: SetVehicleVirtualWorld??!! - by Matthias_ - 06.07.2010, 08:16
Re: SetVehicleVirtualWorld??!! - by straco - 06.07.2010, 08:29
Re: SetVehicleVirtualWorld??!! - by Sir_bomber - 06.07.2010, 09:23
Re: SetVehicleVirtualWorld??!! - by RyDeR` - 06.07.2010, 10:55
Re: SetVehicleVirtualWorld??!! - by Sir_bomber - 06.07.2010, 11:12
Re: SetVehicleVirtualWorld??!! - by Jefff - 06.07.2010, 13:05
Re: SetVehicleVirtualWorld??!! - by Jay_ - 21.08.2010, 23:09

Forum Jump:


Users browsing this thread: 1 Guest(s)