10.07.2009, 07:38
pawn Код:
public OnVehicleSpawn(vehicleid)
{
//This timer is needed because if we add the components at OnVehicleSpawn,
//the components will get added before the vehicle spawns... and than it isn't tuned
SetTimer("VehicleSpawn",2000,0); //The components will be added with a delay of 2 second.
}
pawn Код:
public OnVehicleSpawn(vehicleid)
{
//This timer is needed because if we add the components at OnVehicleSpawn,
//the components will get added before the vehicle spawns... and than it isn't tuned
SetTimer("VehicleSpawn",50,0); //The components will be added with a delay of 2 second.
}