Home   Help Search Login Register  

Author Topic: Where to find weapons and ammo cargo slots for vehicles??  (Read 984 times)

0 Members and 1 Guest are viewing this topic.

Offline Nixer6

  • Members
  • *
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:
Why do I have to be a Rocket Scientist to make a good mission?

Offline Planck

  • Honoured
  • Former Staff
  • ****
  • I'm never wrong ....I'm just not always right !
Re: Where to find weapons and ammo cargo slots for vehicles??
« Reply #1 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
I know a little about a lot, and a lot about a little.

Offline Nixer6

  • Members
  • *
Re: Where to find weapons and ammo cargo slots for vehicles??
« Reply #2 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:
Why do I have to be a Rocket Scientist to make a good mission?