Jump to content

Soviet_Union

Member
  • Content Count

    16
  • Joined

  • Last visited

  • Medals

Posts posted by Soviet_Union


  1. How would you make it so you could control drones? I manage to spawn a few in through the aircraft factory and equipped an UAV terminal, but cant really control them. What would I need to do to make them controllable?


  2. For vehicles you also need to add the classname to the list in common > config > factories > factories_east/west.sqf for the vehicles to show in the purchase menu. The units_east/west.sqf (which is what you have there) simply defines the vehicle parameters such as price, upgrade level etc.

    Ah thanks man XD. But how would you go about changing the uniforms and their weapons to a specific redfor custom faction?

    EDIT: I figured out how to change the ones you buy at barracks, but what about the soldiers you start with? I cant figure out how to change them with the soldiers of the mod.


  3. You need the classnames of the weapon and any magazines it uses. extract the pbo and goto common > config > gear > gear_east/west.sqf and add the classnames in the appropriate sections (labelled magazines, weapons, uniforms etc) in the following format:

    _i = _i + ["Classname"]; (your classname)

    _u = _u + [2]; (gear upgrade level at which your weapon/mag will appear in the gear menu)

    _p = _p + [200]; (price)

    Im trying to do the same thing except for a vehicle, i got the classname and everything but it does not seem to be showing on the buy list :/

    heres what i got:

    _c = _c + ['RDS_BMP1_AAF_01'];

    _p = _p + [''];

    _n = _n + [''];

    _o = _o + [325];

    _t = _t + [15];

    _u = _u + [0];

    _f = _f + [CTI_FACTORY_LIGHT];

    _s = _s + [""];

    Am I doing something wrong?

×