Is there a mod or mutator the removes the vehicles from ONS. I want to play some onslaught without the vehicles.
Thanks for the help.
Tim
Thanks for the help.
Tim

class MutNixVehicles extends Mutator; function bool CheckReplacement(Actor Other, out byte bSuperRelevant) { bSuperRelevant = 0; if( Other.IsA('ONSVehicleFactory') ) { Other.MaxVehicleCount=0; Other.bActive=false; Other.bNeverActivate=true; } else if( Other.IsA('ASVehicleFactory') && !Other.IsA('ASVehicle_SpaceFighter_Human') && !Other.IsA('ASVehicle_SpaceFighter_Skaarj') ) { Other.bEnabled = false; } else if( Other.IsA('Weapon_Sentinel') || Other.IsA('Weapon_Turret_IonCannon') || Other.IsA('Weapon_Turret_Minigun') || Other.IsA('Weapon_Turret') || Other.IsA('Weapon_Link_Turret') || Other.IsA('ASVehicle_Sentinel') || Other.IsA('ONSManualGunPawn') ) { return false; } else if( Other.IsA('Vehicle') ) { bHidden=true; } } defaultproperties { GroupName="Tweaks" FriendlyName="Remove Vehicles" Description="removes vehicles from gameplay" }
Comment