Search the Community
Showing results for tags 'value'.
Found 3 results
-
Which PBO need to be edit to change Mk-1 EMR magazine ?
boombastic posted a topic in ARMA 3 - QUESTIONS & ANSWERS
Hi, can somebody point me to right config file that include Mk-1 EMR magazine settings (bullet amount e.t.c.) i tried to search in "weapons_f.pbo" , "weapons_f_beta.pbo" and "weapons_f_mark.pbo" but still cannot find proper config file :( Thanks for help! -
Vest has no armor in game, config help.
vanschmoozin posted a topic in ARMA 3 - ADDONS - CONFIGS & SCRIPTING
Hey there! So no matter the number i put in for "armor=____" I cant seem to get it to translate to the game... Anyone have any ideas? heres my config section for the vests. class Custom_Vest: Vest_Camo_Base { scope = 2; displayName = "Project Honor Platecarrier"; picture = "-"; model = "A3\Characters_F\BLUFOR\equip_b_Vest01"; hiddenSelections[] = {"Camo"}; hiddenSelectionsTextures[] = {"Project_Honor\Data\moh_vest_template.paa"}; class ItemInfo: VestItem { uniformModel = "A3\Characters_F\BLUFOR\equip_b_Vest01.p3d"; containerClass = "Supply120"; mass=80; armor = "5*0.5"; passThrough=0.3; hiddenSelections[] = {"camo"}; }; }; -
CfgAmmo - Hit - Value randomisation
Maff posted a topic in ARMA 2 & OA : ADDONS - Configs & Scripting
I have been working on a small collection of addons for Arma 2:CO for myself and a few friends. This started as a simple weapon, equipment and unit renaming addon but as I've been reading through the ACE, BI and VBS2/JCOVE configs the ideas have been flowing! I have started to experiment with creating my own ammunition and magazines just to see if I can do it. The below examples are from JCOVE Lite and I'm guessing these values are intended to be randomised with each hit. Is this correct? If so, is this possible to do in Arma 2/3 and are there any issues with doing this? I have tried to test with "B_556x45_Ball" ammunition in Arma 2 but I honestly can't tell - My targets are dead in one shot using; class BulletBase; class B_556x45_Ball: BulletBase { hit = "6*1.2"; }; *** As I'm typing this, I recall using a script that displays target damage and where they have been hit. I'll look that out and crack on *** EXAMPLES FROM JCOVE LITE; class vbs2_ammo_B_556x45_AP: vbs2_ammo_B_556x45_Ball { hit = "8*1.2"; }; class vbs2_ammo_B_556x45_Silent_AP: vbs2_ammo_B_556x45_Silent { hit = "8*0.80*1.2"; }; class vbs2_ammo_B_127x99_Ball: vbs2_LargeBullet { hit = "(15 + (7))"; typicalSpeed = "0.75*855"; airFriction = -0.00068; tracerScale = 1.5; model = "\vbs2\data\bullettracer\tracer_red"; };