arma3:config:bis-weapon-config-guidelines
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
arma3:config:bis-weapon-config-guidelines [2013/04/19 20:47] – moved page to proper location. snakeman | arma3:config:bis-weapon-config-guidelines [2024/08/02 14:57] (current) – links added. snakeman | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== ArmA 3 BIS Weapon Config Guidelines ====== | + | ====== ArmA 3 bis Weapon Config Guidelines ====== |
- | 101 - How to set up a weapon for ArmA 3 | + | [[https:// |
+ | **101 - How to set up a weapon for ArmA 3** | ||
- | ====== Additional functionality compared to A2/OA ====== | ||
- | * Slotable weapon accessories | + | ===== Additional functionality compared to A2/OA ===== |
- | * Custom reload animations | + | |
- | * Adjustable sights | + | |
- | * Underwater weapons | + | |
- | * Ammo changes on fly and on hit | + | |
- | * Rotating muzzle-flash | + | |
- | * Explosion shielding | + | |
+ | * Slotable weapon accessories | ||
+ | * Custom reload animations | ||
+ | * Adjustable sights | ||
+ | * Underwater weapons | ||
+ | * Ammo changes on fly and on hit | ||
+ | * Rotating muzzle-flash | ||
+ | * Explosion shielding | ||
- | ====== Model Requirements (p3d) ====== | ||
- | proxies for slotable accessories | + | ===== Model requirements {p3d} ===== |
- | muzzle accessory should be on proxy \A3\data_f\proxies\weapon_slots\MUZZLE | + | * proxies for slotable accessories |
+ | * | ||
+ | * optics should be on proxy **\A3\data_f\proxies\weapon_slots\TOP** | ||
+ | * side accessory should be on proxy **\A3\data_f\proxies\weapon_slots\SIDE** | ||
+ | * all these proxies could be redefined in // | ||
- | optics should be on proxy \A3\data_f\proxies\weapon_slots\TOP | + | * selections for folding iron sights |
+ | * You need to create selections and axes for iron sights if You want them folded once the optics | ||
+ | * Front part should be named **ForeSight** with **ForeSight_axis** in memory lod | ||
+ | * Rear part should be named **BackSight** with **BackSight_axis** in memory lod | ||
- | side accessory should | + | * adjustable sights for grenade launchers |
+ | * there needs to be a selection that is going to rotate (in case of collimator sights), default naming is **OP** | ||
+ | * this selection needs to have an axis in memory lod, default naming is **OP_axis** | ||
+ | * there needs to be a focus point, the best place is the red dot of collimator, with memory point **OP_look** by default and several points for eye, usually **OP_eyeX** where X is the number of the point. Good practice is to place them in same distance form focus point | ||
- | all these proxies could be redefined in cfgWeapons >> Weapon >> WeaponSlotsInfo >> XXX >> linkProxy parameter where XXX is the slot name | + | ===== Model config changes {model.cfg} |
- | selections for folding iron sights | + | * |
- | + | model.cfg | |
- | You need to create selections and axes for iron sights if You want them folded once the optics is put on the weapon | + | |
- | + | ||
- | Front part should be named ForeSight with ForeSight_axis in memory lod | + | |
- | + | ||
- | Rear part should be named BackSight with BackSight_axis in memory lod | + | |
- | + | ||
- | adjustable sights for grenade launchers | + | |
- | + | ||
- | there needs to be a selection that is going to rotate (in case of collimator sights), default naming is OP | + | |
- | + | ||
- | this selection needs to have an axis in memory lod, default naming is OP_axis | + | |
- | + | ||
- | there needs to be a focus point, the best place is the red dot of collimator, with memory point OP_look by default and several points for eye, usually OP_eyeX where X is the number of the point. Good practice is to place them in same distance form focus point | + | |
- | + | ||
- | + | ||
- | ====== Model Config Changes (model.cfg) ====== | + | |
- | + | ||
- | custom reload animation have a good use of newly added parameter unHideValue for hide type of animations - you are now able to make asymmetrical animations eg. for hiding of magazine: | + | |
- | + | ||
- | model.cfg: | + | |
<code cpp> | <code cpp> | ||
- | class magazine_hide | + | class magazine_hide |
- | { | + | { |
- | type = " | + | type = " |
- | source = " | + | source = " |
- | selection = " | + | selection = " |
- | minValue = 0; | + | minValue = 0.000000; |
- | maxValue = 1; | + | maxValue = 1.00000; |
- | hideValue = 0.220; | + | hideValue = 0.220; |
- | unhideValue = 0.550; | + | unhideValue = 0.550; |
- | }; | + | }; |
</ | </ | ||
- | the animations could look a bit better by simply adding a translation for the magazine and adding an axis for that in model - magazine should translate at first, then disappear, appear and translate back | + | * |
- | + | model.cfg | |
- | model.cfg: | + | |
<code cpp> | <code cpp> | ||
- | class magazine_reload_move_1 | + | class magazine_reload_move_1 |
- | { | + | { |
- | type = " | + | type = " |
- | source = " | + | source = " |
- | selection = " | + | selection = " |
- | axis = " | + | axis = " |
- | minValue = 0.145; | + | minValue = 0.145; |
- | maxValue = 0.170; | + | maxValue = 0.170; |
- | offset0 = 0; | + | offset0 = 0.0; |
- | offset1 = 0.5; | + | offset1 = 0.5; |
- | }; | + | }; |
- | </ | + | </ |
- | foldable iron sights use hasOptics controller | + | * |
- | + | model.cfg | |
- | model.cfg: | + | |
<code cpp> | <code cpp> | ||
- | class BackSight_optic | + | class BackSight_optic |
- | { | + | { |
- | type = " | + | type = " |
- | source = " | + | source = " |
- | selection = " | + | selection = " |
- | axis = " | + | axis = " |
- | memory = 1; | + | memory = 1; |
- | minValue = 0; | + | minValue = 0.0000000; |
- | maxValue = 1; | + | maxValue = 1.0000000; |
- | angle0 = 0; | + | angle0 = 0.000000; |
- | angle1 = (rad 90); | + | angle1 = (rad 90); |
- | }; | + | }; |
</ | </ | ||
- | new animation controllers | + | * |
- | + | model.cfg | |
- | model.cfg: | + | |
<code cpp> | <code cpp> | ||
- | class OP_ROT | + | class OP_ROT |
- | { | + | { |
- | type = " | + | type=" |
- | source = " | + | source=" |
- | sourceAddress = " | + | sourceAddress=" |
- | selection = " | + | selection=" |
- | axis = " | + | axis=" |
- | minValue = 0; | + | minValue=0; |
- | maxValue = 3; // this weapon has array with 4 distances | + | maxValue=3; |
- | angle0 = "rad 0"; | + | angle0=" |
- | angle1 = "rad 65"; | + | angle1=" |
- | }; | + | }; |
</ | </ | ||
- | rotating muzzle flashes are done using a new animation source ammoRandom which changes it's value every time weapon is fired. Various degrees of rotation may be set up by using correct muzzle flash shape and minValue maxValue combination. | + | * |
- | + | model.cfg | |
- | model.cfg: | + | |
<code cpp> | <code cpp> | ||
- | class MuzzleFlashROT | + | class MuzzleFlashROT |
- | { | + | { |
- | type = " | + | type=" |
- | source = " | + | source=" |
- | sourceAddress = " | + | sourceAddress=" |
- | selection = " | + | selection=" |
- | axis = ""; | + | axis=""; |
- | centerFirstVertex = true; //use first vertex of selection as center of rotation | + | centerFirstVertex=true; |
- | minValue = 0; | + | minValue=0; |
- | maxValue = 4; //rotation angle will be 360/4 = 90 degrees | + | maxValue=4; |
- | angle0 = "rad 0"; | + | angle0=" |
- | angle1 = "rad 360"; | + | angle1=" |
- | }; | + | }; |
</ | </ | ||
- | ====== New Config Parameters (config.cpp) ====== | + | ===== New config parameters {config.cpp} |
- | ===== Slotable weapons | + | ==== Slotable weapons |
- | Available slots are defined in each weapon but are usually inherited from a parent weapon. They are stored as classes in class WeaponSlotsInfo which contains the slots and parameters for inventory | + | * |
+ | * **Mass** is a new unit used to describe weight and volume of an object used. Each container has a set capacity in the same units. | ||
+ | * allowedSlots is an array of slot numbers where you may put the weapon. 701 stands for vest, 801 stands for uniform, 901 stands for backpack | ||
+ | * each weapon slot is a separate subclass in class WeaponSlotsInfo | ||
+ | * parameter **linkProxy** defines a proxy in weapon model for said slot (see standard names on top) | ||
+ | * parameter **displayName** describes a mouse-over name of slot in Inventory | ||
+ | * array **compatibleItems** lists possible accessory placeable into that slot. Most weapons are able to have any RIS equipment, but eg. muzzle accessory differs according to caliber. | ||
+ | * external classes // | ||
- | Mass is a new unit used to describe weight and volume of an object used. Each container has a set capacity in the same units. | + | <code cpp> |
+ | class SlotInfo; | ||
+ | class CowsSlot : SlotInfo | ||
+ | { | ||
+ | // targetProxy | ||
+ | linkProxy = " | ||
+ | |||
+ | // display name | ||
+ | displayName = $STR_A3_CowsSlot0; | ||
+ | |||
+ | // class names with items supported by weapon | ||
+ | compatibleItems[[]] = {" | ||
+ | }; | ||
+ | class PointerSlot : SlotInfo | ||
+ | { | ||
+ | // targetProxy | ||
+ | linkProxy = " | ||
+ | |||
+ | // display name | ||
+ | displayName = $STR_A3_PointerSlot0; | ||
+ | |||
+ | // class names with items supported by weapon | ||
+ | compatibleItems[[]] = {" | ||
+ | }; | ||
+ | |||
+ | class cfgWeapons | ||
+ | { | ||
+ | class myWeapon | ||
+ | { | ||
+ | class WeaponSlotsInfo | ||
+ | { | ||
+ | mass = 4; /// default mass of a weapon | ||
+ | class MuzzleSlot : SlotInfo | ||
+ | { | ||
+ | // targetProxy | ||
+ | linkProxy = " | ||
+ | |||
+ | // display name | ||
+ | displayName = " | ||
+ | |||
+ | // class names with items supported by weapon | ||
+ | compatibleItems[[]] = {}; // moved to each weapon | ||
+ | }; | ||
+ | class CowsSlot: CowsSlot {}; | ||
+ | class PointerSlot: | ||
+ | allowedSlots[[]] = {901}; // you simply cannot put this into your pants | ||
+ | }; | ||
+ | }; | ||
+ | }; | ||
+ | </ | ||
- | allowedSlots[] is an array of slot numbers where you may put the weapon. 701 stands for vest, 801 stands for uniform, 901 stands for backpack | ||
- | each weapon | + | === Muzzle accessories |
- | + | * suppressors are configured as a weapon | |
- | parameter | + | * the class itself consists only from scope, displayName, |
- | + | | |
- | parameter displayName describes a mouse-over name of slot in Inventory | + | |
- | + | | |
- | array compatibleItems[] lists possible accessory placeable into that slot. Most weapons are able to have any RIS equipment, but eg. muzzle accessory differs according to caliber. | + | |
- | + | * higher **cost** coefficient should make AI think more about shooting the suppressed weapon | |
- | external classes CowsSlot | + | * **typicalSpeed** |
+ | * there are alternate **muzzleEnd** | ||
<code cpp> | <code cpp> | ||
- | class SlotInfo; | + | |
- | class CowsSlot : SlotInfo | + | class cfgWeapons |
- | { | + | { |
- | // targetProxy | + | |
- | linkProxy = " | + | |
- | + | | |
- | // display name | + | { |
- | displayName | + | |
- | + | | |
- | // class names with items supported by weapon | + | |
- | compatibleItems[] | + | |
- | }; | + | |
- | class PointerSlot : SlotInfo | + | |
- | { | + | |
- | // targetProxy | + | { |
- | linkProxy | + | |
- | + | ||
- | // display name | + | class MagazineCoef |
- | displayName = $STR_A3_PointerSlot0; | + | { |
- | + | initSpeed | |
- | // class names with items supported by weapon | + | }; |
- | compatibleItems[] | + | |
- | }; | + | class AmmoCoef |
- | + | { | |
- | class cfgWeapons | + | |
- | { | + | |
- | class myWeapon | + | |
- | { | + | |
- | class WeaponSlotsInfo | + | |
- | { | + | |
- | mass | + | |
- | class MuzzleSlot : SlotInfo | + | |
- | { | + | }; |
- | // targetProxy | + | |
- | linkProxy | + | muzzleEnd |
- | + | | |
- | // display name | + | |
- | displayName | + | class MuzzleCoef |
- | + | { | |
- | // class names with items supported by weapon | + | dispersionCoef |
- | compatibleItems[] | + | |
- | }; | + | |
- | class CowsSlot: CowsSlot {}; | + | |
- | class PointerSlot: | + | |
- | allowedSlots[] | + | recoilCoef = 1.0f; |
- | }; | + | |
- | }; | + | |
- | }; | + | minRangeCoef = 1.0f; minRangeProbabCoef = 1.0f; |
+ | midRangeCoef = 1.0f; midRangeProbabCoef = 1.0f; | ||
+ | maxRangeCoef = 1.0f; maxRangeProbabCoef = 1.0f; | ||
+ | }; | ||
+ | }; | ||
+ | }; | ||
+ | }; | ||
</ | </ | ||
- | **Muzzle accessories** | + | |
- | + | | |
- | suppressors are configured as a weapon inheriting some item abilities | + | |
- | + | | |
- | the class itself consists only from scope, displayName, | + | |
- | + | ||
- | there is subclass | + | |
- | + | ||
- | subclass AmmoCoef | + | |
- | + | ||
- | hit is the coefficient of hit of original ammo | + | |
- | + | ||
- | visibleFire, audibleFire, visibleFireTime and audibleFireTime are coefficients for detection upon shooting the weapon | + | |
- | + | ||
- | higher cost coefficient should make AI think more about shooting the suppressed weapon | + | |
- | + | ||
- | typicalSpeed and airFriction coefficients change the ballistic characteristics of the ammo | + | |
- | + | ||
- | there are alternate muzzleEnd and alternativeFire directly inside class ItemInfo to have different muzzle effects origin and muzzle flashes | + | |
- | + | ||
- | you may set up modes[] and specific fire modes for the suppressed weapon directly in class ItemInfo | + | |
<code cpp> | <code cpp> | ||
- | class Mode_SemiAuto; | + | class MyWeapon: Rifle_Base_F |
- | class cfgWeapons | + | { |
- | { | + | class Single: Mode_SemiAuto |
- | class ItemCore; | + | { |
- | class InventoryMuzzleItem_Base_F; | + | |
- | class | + | |
- | { | + | class BaseSoundModeType /// I am too lazy to copy this twice into both standard and silenced sounds, that is why there is a base class from which both inherit (and sound of closure stays the same no matter what muzzle accessory is used) |
- | scope = 2; | + | { |
- | displayName="My Muzzle Accessory"; | + | |
- | + | ||
- | picture="\A3\weapons_F\Data\UI\myMuzzleAccessory_CA.paa"; | + | |
- | model | + | |
- | + | | |
- | class ItemInfo: InventoryMuzzleItem_Base_F | + | }; |
- | { | + | |
- | class MagazineCoef | + | |
- | { | + | { |
- | initSpeed | + | |
- | }; | + | |
- | + | | |
- | class AmmoCoef | + | soundBegin[[]]={begin1, |
- | { | + | }; |
- | hit = 0.8; | + | |
- | visibleFire = 0.3; | + | class SilencedSound: |
- | audibleFire = 0.8; | + | { |
- | visibleFireTime = 0.5; | + | begin1[[]]={" |
- | audibleFireTime = 1; | + | |
- | cost = 1; | + | |
- | typicalSpeed = 0.8; | + | }; |
- | airFriction = 1; | + | |
- | }; | + | }; |
- | + | }; | |
- | muzzleEnd = " | + | |
- | alternativeFire = " | + | |
- | + | ||
- | modes[] = {"Single"}; | + | |
- | + | ||
- | class Single: Mode_SemiAuto | + | |
- | { | + | |
- | begin1[] = {"A3\sounds_f\weapons\silenced\silent-25.wss", db0, 1,600}; | + | |
- | begin2[] = {"A3\sounds_f\weapons\silenced\silent-26.wss", db0, 1,600}; | + | |
- | soundBegin[] = {begin1,0.5, begin2,0.5}; | + | |
- | + | ||
- | closure1[] = {" | + | |
- | closure2[] = {" | + | |
- | soundClosure[] = {closure1,0.5, closure2,0.5}; | + | |
- | + | ||
- | weaponSoundEffect | + | |
- | }; | + | |
- | }; | + | |
- | }; | + | |
- | }; | + | |
</ | </ | ||
- | **Optics** | ||
- | in addition to default parameters mentioned in muzzle accessories class, there is weaponInfoType to choose a correct resource for weapon info directly inside optic class | + | === Optics |
- | + | * | |
- | there is the same ItemInfo subclass but with different parameters | + | |
- | + | | |
- | don't forget that ItemInfo inherits some parameters from InventoryOpticsItem_Base_F (eg. muzzlePos and muzzleEnd) in case you rename the memory points | + | |
- | + | | |
- | parameter opticType is used for balancing the optics for specific fire modes (should be further described by balancing crew) | + | |
- | + | ||
- | modelOptics is the 2D model for selected optics | + | |
- | + | ||
- | subclass OpticsModes works the same way it used to work in A2/OA | + | |
<code cpp> | <code cpp> | ||
- | class cfgWeapons | + | |
- | { | + | { |
- | class ItemCore; | + | class ItemCore; |
- | class InventoryOpticsItem_Base_F; | + | class InventoryOpticsItem_Base_F; |
- | class myOpticsAccessory | + | class myOpticsAccessory |
- | { | + | { |
- | scope = 2; | + | scope = 2; |
- | displayName=" | + | displayName=" |
- | + | ||
- | picture=" | + | picture=" |
- | model = " | + | model = " |
- | weaponInfoType = " | + | weaponInfoType = " |
- | + | ||
- | class ItemInfo: InventoryOpticsItem_Base_F | + | class ItemInfo: InventoryOpticsItem_Base_F |
- | { | + | { |
- | mass = 7; | + | mass = 7; |
- | modelOptics=" | + | modelOptics=" |
- | class OpticsModes | + | class OpticsModes |
- | { | + | { |
- | class MyOptics | + | class MyOptics |
- | { | + | { |
- | opticsID = 1; | + | opticsID = 1; |
- | useModelOptics = true; | + | useModelOptics = true; |
- | opticsPPEffects[]={" | + | opticsPPEffects[[]]={" |
- | opticsZoomMin = 0.0555; | + | opticsZoomMin = 0.0555; |
- | opticsZoomMax = 0.1300; | + | opticsZoomMax = 0.1300; |
- | opticsZoomInit= 0.1300; | + | opticsZoomInit= 0.1300; |
- | discreteDistance[] = {100, | + | discreteDistance[[]] = {100, |
- | discreteDistanceInitIndex = 1; | + | discreteDistanceInitIndex = 1; |
- | distanceZoomMin = 100; | + | distanceZoomMin = 100; |
- | distanceZoomMax = 1000; | + | distanceZoomMax = 1000; |
- | nFovLimit = 0.07; | + | nFovLimit = 0.07; |
- | discretefov[] = {0.1300, | + | discretefov[[]] = {0.1300, |
- | discreteInitIndex = 0; | + | discreteInitIndex = 0; |
- | modelOptics[] = {" | + | modelOptics[[]] = {" |
- | memoryPointCamera = " | + | memoryPointCamera = " |
- | visionMode[] = {" | + | visionMode[[]] = {" |
- | opticsFlare = true; | + | opticsFlare = true; |
- | opticsDisablePeripherialVision = true; | + | opticsDisablePeripherialVision = true; |
- | cameraDir = ""; | + | cameraDir = ""; |
- | }; | + | }; |
- | class IronOnTopOfMyOptics: | + | class IronOnTopOfMyOptics: |
- | { | + | { |
- | opticsID = 2; | + | opticsID = 2; |
- | useModelOptics = false; | + | useModelOptics = false; |
- | opticsFlare = false; | + | opticsFlare = false; |
- | opticsDisablePeripherialVision = false; | + | opticsDisablePeripherialVision = false; |
- | opticsZoomMin=0.375; | + | opticsZoomMin=0.375; |
- | opticsZoomMax=1.1; | + | opticsZoomMax=1.1; |
- | opticsZoomInit=0.75; | + | opticsZoomInit=0.75; |
- | memoryPointCamera = " | + | memoryPointCamera = " |
- | visionMode[] = {}; | + | visionMode[[]] = {}; |
- | discretefov[] = {}; | + | discretefov[[]] = {}; |
- | }; | + | }; |
- | }; | + | }; |
- | }; | + | }; |
- | }; | + | }; |
- | }; | + | }; |
</ | </ | ||
- | **Side Accessory** | ||
- | the class of side accessory is made the same way as for muzzle accessory | + | === Side Accessory |
- | + | * | |
- | subclass ItemInfo contains some specific parameters, but they work the same way as they did in A2/OA | + | |
<code cpp> | <code cpp> | ||
- | class cfgWeapons | + | |
- | { | + | { |
- | class ItemCore; | + | class ItemCore; |
- | class InventoryFlashLightItem_Base_F; | + | class InventoryFlashLightItem_Base_F; |
- | class mySidesAccessory | + | class mySidesAccessory |
- | { | + | { |
- | scope = 2; | + | scope = 2; |
- | displayName=" | + | displayName=" |
- | + | ||
- | picture=" | + | picture=" |
- | model = " | + | model = " |
- | + | ||
- | class ItemInfo: InventoryFlashLightItem_Base_F | + | class ItemInfo: InventoryFlashLightItem_Base_F |
- | { | + | { |
- | mass = 9; | + | mass = 9; |
- | class Pointer | + | class Pointer |
- | { | + | { |
- | irLaserPos=" | + | irLaserPos=" |
- | irLaserEnd=" | + | irLaserEnd=" |
- | }; | + | }; |
- | class FlashLight{}; | + | class FlashLight{}; |
- | }; | + | }; |
- | }; | + | }; |
- | }; | + | }; |
</ | </ | ||
- | ===== Custom reload animations | + | ==== Custom reload animations |
- | parameter reloadAction is now for both a magazine and the weapon. | + | * |
- | + | | |
- | if it is not defined for any of them, default reload is played. | + | |
- | + | | |
- | if the parameter is defined for the weapon but isn't defined for a magazine, reloadAction for weapon is played upon reloading said weapon | + | |
- | + | ||
- | if the magazine has reloadAction defined, the action selected by this parameter is played every time (not depending on weapon). This ensures different reloads for different magazines of one weapon (eg. UGLs) | + | |
- | + | ||
- | the action chosen by reloadAction is played according to config of animations for said soldier (action in CfgMovesMaleSdr leads to a state in CfgGesturesMale for default soldier), different target states could be defined for different action maps (eg. there could be a different reload gesture for crouch and prone with rifle) | + | |
<code cpp> | <code cpp> | ||
- | class CfgMovesBasic | + | |
- | { | + | { |
- | class DefaultDie; | + | class DefaultDie; |
- | class ManActions | + | class ManActions |
- | { | + | { |
- | reloadMyWeapon = " | + | reloadMyWeapon = " |
- | }; | + | }; |
- | }; | + | }; |
- | + | ||
- | class CfgGesturesMale | + | class CfgGesturesMale |
- | { | + | { |
- | class Default; | + | class Default; |
- | class States | + | class States |
- | { | + | { |
- | class reloadMyWeapon: | + | class reloadMyWeapon: |
- | { | + | { |
- | file=" | + | file=" |
- | looped=0; | + | looped=0; |
- | speed=0.400000; | + | speed=0.400000; |
- | mask=" | + | mask=" |
- | headBobStrength=0.200000; | + | headBobStrength=0.200000; |
- | headBobMode=2; | + | headBobMode=2; |
- | rightHandIKBeg=1; | + | rightHandIKBeg=1; |
- | rightHandIKEnd=1; | + | rightHandIKEnd=1; |
- | leftHandIKCurve[]={0, | + | leftHandIKCurve[[]]={0, |
- | }; | + | }; |
- | }; | + | }; |
- | }; | + | }; |
- | + | ||
- | class cfgWeapons | + | class cfgWeapons |
- | { | + | { |
- | class myWeapon | + | class myWeapon |
- | { | + | { |
- | reloadAction = " | + | reloadAction = " |
- | }; | + | }; |
- | }; | + | }; |
</ | </ | ||
- | ===== Underwater weapons | + | ==== Underwater weapons |
- | weapons with canShootInWater set to 1 are able to shoot under water | + | * |
- | + | | |
- | parameter soundBeginWater[] has the same use as soundBegin[] and defines what sounds and with what probability is going to be played while shooting under the water surface, both of them are defined per fire mode: | + | |
<code cpp> | <code cpp> | ||
- | class Mode_SemiAuto; | + | |
- | + | class cfgWeapons | |
- | class cfgWeapons | + | { |
- | { | + | class myWeapon |
- | class myWeapon | + | { |
- | { | + | modes[[]] = {" |
- | modes[] = {" | + | canShootInWater = 1; // allows to shoot under water |
- | canShootInWater = 1; // allows to shoot under water | + | class Single: Mode_SemiAuto |
- | class Single: Mode_SemiAuto | + | { |
- | { | + | begin1[[]]={" |
- | begin1[]={" | + | begin2[[]]={" |
- | begin2[]={" | + | begin3[[]]={" |
- | begin3[]={" | + | soundBegin[[]]={begin1, |
- | soundBegin[]={begin1, | + | beginwater1[[]]={" |
- | beginwater1[]={" | + | beginwater2[[]]={" |
- | beginwater2[]={" | + | beginwater3[[]]={" |
- | beginwater3[]={" | + | soundBeginWater[[]]={beginwater1, |
- | soundBeginWater[]={beginwater1, | + | }; |
- | }; | + | }; |
- | }; | + | }; |
- | }; | + | |
</ | </ | ||
- | underwater ammo has some different characteristics | + | * |
- | + | | |
- | waterFriction is underwater equivalent of airFriction and supercavitating ammunition has this close to zero. Standard ammo doesn' | + | |
- | + | | |
- | timeToLive for underwater ammo is rather low to let it be harmless after some 40 meters | + | |
- | + | ||
- | the fancy bubble effect is done by having effectFly set to AmmoUnderwater, | + | |
<code cpp> | <code cpp> | ||
- | class cfgAmmo | + | |
- | { | + | { |
- | class BulletBase; | + | class BulletBase; |
- | class myAmmo: BulletBase // For myWeapon | + | class myAmmo: BulletBase // For myWeapon |
- | { | + | { |
- | waterFriction = -0.00096; // nearly direct line underwater | + | waterFriction = -0.00096; // nearly direct line underwater |
- | timeToLive = 0.12; // that's enough for 45 meters underwater | + | timeToLive = 0.12; // that's enough for 45 meters underwater |
- | effectFly = " | + | effectFly = " |
- | }; | + | }; |
- | }; | + | }; |
</ | </ | ||
- | ===== Ammo Changes On Fly And On Hit ===== | + | ==== Ammo changes on fly and on hit ==== |
+ | * there are two new simulations of ammo available mainly for artillery, but usable for many other means | ||
- | there are two new simulations | + | * simulation **shotSubmunition** allows to deploy multiple ammo from the parent one upon meeting certain conditions |
+ | * parameter **submunitionAmmo** defines class of newly created | ||
+ | * you could set the inherited ammo and it would spread in cone according to **submunitionConeAngle** (and it is in degrees) | ||
+ | * **submunitionConeType** describes pattern of ammo in detail, first part is a distribution function (" | ||
+ | submunitionConeType = {" | ||
+ | submunitionConeType = {" | ||
+ | submunitionConeType = {" | ||
+ | submunitionConeType = {" | ||
+ | submunitionConeType = {" | ||
+ | * parameter **triggerDistance** is used to deploy ammo in set 3D distance before expected target | ||
+ | * parameter **triggerTime** is used to deploy ammo in set time after being fired | ||
+ | * parameter **triggerSpeedCoef** is a coefficient of speed of inherited ammo relative to speed of parent ammo | ||
+ | * | ||
- | simulation shotSubmunition allows to deploy multiple ammo from the parent one upon meeting certain conditions | ||
- | |||
- | parameter submunitionAmmo defines class of newly created ammo and this could be used multiple times | ||
- | |||
- | you could set the inherited ammo and it would spread in cone according to submunitionConeAngle (and it is in degrees) | ||
- | |||
- | submunitionConeType[] describes pattern of ammo in detail, first part is a distribution function (" | ||
<code cpp> | <code cpp> | ||
- | submunitionConeType[] = {" | + | class cfgAmmo |
- | submunitionConeType[] | + | |
- | submunitionConeType[] = {" | + | |
- | submunitionConeType[] | + | |
- | submunitionConeType[] | + | { |
+ | submunitionAmmo | ||
+ | submunitionConeType[[]] = {" | ||
+ | | ||
+ | | ||
+ | }; | ||
+ | | ||
</ | </ | ||
- | parameter triggerDistance | + | * simulation **shotDeploy** |
- | + | * it uses the same **submunitionAmmo** parameter as described above | |
- | parameter triggerTime is used to deploy ammo in set time after being fired | + | |
- | + | ||
- | parameter triggerSpeedCoef is a coefficient of speed of inherited ammo relative to speed of parent ammo | + | |
- | + | ||
- | for Artillery computer use array aimAboveTarget[] and aimAboveDefault as a index of the array to set different heights | + | |
<code cpp> | <code cpp> | ||
- | class cfgAmmo | + | |
- | { | + | { |
- | class | + | class ShotDeployBase; |
- | class | + | class Mo_ClassicMineRange: ShotDeployBase |
- | { | + | { |
- | submunitionAmmo = "MySubmunitionAmmo"; | + | submunitionAmmo = "APERSMine_Range_Ammo"; |
- | submunitionConeType[] | + | |
- | submunitionConeAngle | + | |
- | triggerDistance = 100; | + | }; |
- | }; | + | }; |
- | }; | + | |
</ | </ | ||
- | simulation shotDeploy is used to change ammo upon impact (eg. change to a mine) | ||
- | it uses the same submunitionAmmo parameter as described above | + | ==== Explosion shielding ==== |
+ | |||
+ | * class hitpoints in configuration of all vehicles (including soldiers) has got a new parameter called **explosionShielding** | ||
+ | * this parameter simply multiplies inidrectHit taken from explosives (that makes it explosion vulnerability in an effective way) - the higher it is the more damage would selected hitpoint get from the hit | ||
<code cpp> | <code cpp> | ||
- | class cfgAmmo | + | |
- | { | + | { |
- | class | + | class myVehicle |
- | class | + | { |
- | { | + | class HitPoints |
- | submunitionAmmo | + | { |
- | airFriction | + | |
- | EffectFly = " | + | }; |
- | }; | + | }; |
- | }; | + | }; |
</ | </ | ||
+ | ==== Weapon Inertia ==== | ||
- | ===== Explosion shielding ===== | + | Inertia coefficient |
- | + | ||
- | class hitpoints in configuration | + | |
- | + | ||
- | this parameter simply multiplies inidrectHit taken from explosives (that makes it explosion vulnerability in an effective way) - the higher it is the more damage would selected hitpoint get from the hit | + | |
<code cpp> | <code cpp> | ||
- | class cfgVehicles | + | class cfgWeapons |
{ | { | ||
- | class | + | class |
{ | { | ||
- | class HitPoints | + | // inertia coefficient of the weapon |
- | { | + | inertia |
- | class HitLFWheel {armor=0.12; explosionShielding = 0.8;}; | + | |
- | }; | + | |
}; | }; | ||
}; | }; | ||
</ | </ | ||
arma3/config/bis-weapon-config-guidelines.1366404431.txt.gz · Last modified: 2013/04/19 20:47 (external edit)