OFPEC Forum

Editors Depot - Mission Editing and Scripting => ArmA - Editing/Scripting General => Topic started by: Nixer6 on 16 Aug 2007, 21:25:03

Title: Where to find weapons and ammo cargo slots for vehicles??
Post by: Nixer6 on 16 Aug 2007, 21:25:03
I am looking to find how much cargo ammo and weapons certain vehicles can carry, currently the UAZ variants.

I looked at the config in the wheeled.pbo and couldn't find it.

It is there for trucks, ie US 5 ton and the Urals but not for Hummers and the UAZ's.

Transport Magazines {x}
Trnasport Weapons {x}

Any ideas? Am I looking in the right place?  :yes: :no:
Title: Re: Where to find weapons and ammo cargo slots for vehicles??
Post by: Planck on 16 Aug 2007, 22:02:49
I scanned the configs and here are the results:

Code: [Select]
class All
  transportMaxMagazines = 0;
  transportMaxWeapons = 0;

class Car: LandVehicle
  transportMaxMagazines = 50;
  transportMaxWeapons = 10;
    class BRDM2: Car
      transportMaxMagazines = 100;
      transportMaxWeapons = 10;

class Motorcycle: LandVehicle
  transportMaxMagazines = 5;
  transportMaxWeapons = 0;

class Tank: LandVehicle
  transportMaxMagazines = 100;
  transportMaxWeapons = 10;
    class M113: Tank
      transportMaxMagazines = 100;
      transportMaxWeapons = 20;
        class M113Ambul: M113
          transportMaxMagazines = 0;
          transportMaxWeapons = 0;

class Air: AllVehicles
  transportMaxMagazines = 20;
  transportMaxWeapons = 3;
    class UH60MG: Helicopter
      transportMaxMagazines = 150;
      transportMaxWeapons = 30;

class SmallShip: Ship
  transportMaxMagazines = 100;
  transportMaxWeapons = 20;

class BigShip: Ship
  transportMaxMagazines = 500;
  transportMaxWeapons = 200;

class Truck: Car
  transportMaxMagazines = 200;
  transportMaxWeapons = 50;
    class Truck5tRepair: Truck5t
      transportMaxMagazines = 50;
      transportMaxWeapons = 10;
        class Truck5tRefuel: Truck5t
          transportMaxMagazines = 20;
          transportMaxWeapons = 5;

class StaticWeapon: LandVehicle
  transportMaxMagazines = 0;
  transportMaxWeapons = 0;

class ReammoBox: Strategic
  transportMaxWeapons = 5000;
  transportMaxMagazines = 20000;

UAZ of course comes under class Car...

Hope you find it useful.


Planck
Title: Re: Where to find weapons and ammo cargo slots for vehicles??
Post by: Nixer6 on 16 Aug 2007, 22:17:49
Thanks much.

I looked under class car, heck I even used the little find tool in notepad...looked for Transport  ???
\
Very useful indeed. Thanks again Planck. :good: