02.10.2011, 20:03
You need to set virtual world for each, and you got 40 warnings rather than errors.
If you wanted to make all vehicles in virtual world 9 you could try under on filtersciptinit:
All though this is untested.
pawn Код:
new vid = AddStaticVehicleEx(522,-1805.30004883,-575.59997559,15.69999981,268.00000000,-1,-1,15); //NRG-500
SetVehicleVirtualWorld(vid, 9);
new vid1 = AddStaticVehicleEx(522,-1805.30004883,-583.59997559,15.69999981,267.99499512,-1,-1,15); //NRG-500
SetVehicleVirtualWorld(vid1, 9);
pawn Код:
for(new i=1; i<MAX_VEHICLES; i++)
{
SetVehicleVirtualWorld(i, 9);
}