vehicle question
Moderator: Forum Moderators
vehicle question
i was wondering if its possible to put a vehicle or a v factory in a regular dm map. i have tried many variations, but can only get vehicles to appear if i change level info gametype to ons or assault.
You would have to call super(Pawn).PreBeginPlay(); inside the PreBeginPlay() function (in both the vehicle and the vfactory) in order to allow the vehicle and the vehicle factory to appear in a DM map...or there is always the other option you mentioned. Doing either would require adding custom script to your MyLevel.u package for each vehicletype you wish to spawn.
Good Luck,
milk
Code: Select all
function PreBeginPlay()
{
//skipping ONSVehicle,SVehicle,Vehicle:PreBeginPlay is the only way!!11
super(Pawn).PreBeginPlay();
}
milk