30.08.2009, 17:50
yeah it should
I make it even better by making an include:
Then under OnGameModeInit I Just Put LoadVehicles(); and #include <Vehicles> at the top of the script
I also do the same with objects because objects/vehicles take up alot of lines in a script and get annoying
I make it even better by making an include:
pawn Код:
#if defined _Vehicles_included
#endinput
#endif
#define _Vehicles_included
forward LoadVehicles();
public LoadVehicles()
{
AddStaticVehcile(blahblahblah);
AddStaticVehicle(blahblahblah);
return 1;
}
I also do the same with objects because objects/vehicles take up alot of lines in a script and get annoying