-
Content Count
42 -
Joined
-
Last visited
-
Medals
Community Reputation
0 NeutralAbout jaac
-
Rank
Lance Corporal
Contact Methods
-
Website URL
http://nexarmy.free.fr/
Profile Information
-
Gender
Male
-
Location
Sud de la France
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
jaac started following Import Building, arma freeze to empty clothes, Advanced Towing and and 3 others
-
Hi I created units, with uniforms, vests and bags. I have a problem. the game freeze for 2 to 3 seconds when I put an item on the ground or in a crate. But no bugs when I take an object. And when I start a server, there is almost no more freeze. I don't see where this problem can come from...
-
Hello Thanks for your great work ;) Is it possible to reduce length of rope in script?
-
thanks to both of you... It works flawlessly! ;)
-
Hi I put a camo net on my vehicle by doing this... CfgVehicles: class UserActions { class Mettre_CamouflageDes { priority = 0; displayName = "Deployer Filet Camouflage"; position = "FiletCamo"; radius = 5; showWindow = 0; onlyForPlayer = 0; condition = "this animationPhase ""Filet_Camo1"" > 0.5"; statement = "this animate [""Filet_Camo1"",0]"; }; class Enlever_CamouflageDes { priority = 0; displayName = "Deposer Filet Camouflage"; position = "FiletCamo"; radius = 5; showWindow = 0; onlyForPlayer = 0; condition = "this animationPhase ""Filet_Camo1"" < 0.5"; statement = "this animate [""Filet_Camo1"",1]"; }; }; class AnimationSources: AnimationSources { class Filet_Camo1 { source = "user"; animPeriod = 2; initPhase = 0; }; }; Model.cfg: class Animations { class Filet_Camo1 { type="hide"; source="user"; selection="VAB_FiletCamoDes"; minValue = 0; maxValue = 1; hideValue = 1; }; }; It work well :) Camo is already present on the vehicle, I can remove it... And I can put back it above at will. But..... I wish it was not present at the start, I tried unsuccessfully to change settings several times. ex With: minValue = -1; maxValue = 0; this reverses the process, but I can not put the camo Is it possible to do this? :huh:
-
My weapons scope accessories not visible
jaac replied to jaac's topic in ARMA 3 - ADDONS - CONFIGS & SCRIPTING
Ok, it's alright :D it I had missed..... Sorry :rolleyes: thanks a lot -
My weapons scope accessories not visible
jaac replied to jaac's topic in ARMA 3 - ADDONS - CONFIGS & SCRIPTING
New problem... :unsure: When I select my weapon in the editor, I have an error message: No entry 'bin\config.bin/cfgVehicles/Weapon_LaNex_famas/TransportWeapons/LaNex_famas.weapon'. however I can use my weapon with units, and it is indeed present on units... :huh: And everything works with weapons sights. Code: class Weapon_LaNex_famas: Weapon_Base_F { scope = 2; scopeCurator = 2; displayName = "LaNex FAMAS F1"; author = "NexArmyForces"; dlc = "LaNex Armes D'Epaules"; vehicleClass = "WeaponsPrimary"; editorCategory = "Armes_Fr"; editorSubcategory = "ArmesEpaules_Fr"; editorPreview = "\LaNex_Weapons\ico\famas_icone.paa"; class TransportWeapons { class LaNex_famas { name = "LaNex_famas"; count = 1; }; }; class TransportMagazines { class LaNex_30Rnd_556x45_Stanag { magazine = "LaNex_25Rnd_223Remington"; count = 1; }; }; }; -
My weapons scope accessories not visible
jaac replied to jaac's topic in ARMA 3 - ADDONS - CONFIGS & SCRIPTING
Ok, it works flawlessly :) I understand well, I'll do the same for the remainder... with class Headgear_Base_F; class Vest_Base_F; class Pistol_Base_F; class Weapon_Base_F; class Launcher_Base_F; I'll see if we can add an icon... Thanks ;) >> editorPreview = "MyIcon" ..... It Works !!! :P << -
My weapons scope accessories not visible
jaac posted a topic in ARMA 3 - ADDONS - CONFIGS & SCRIPTING
Hi I created weapons scope accessories, but it is not visible in Eden Editor (on the right side, Accessories menu). otherwise everything works fine. My config: class My_Weapons : ItemCore { scope = 2; scopeCurator = 2; baseWeapon="My_Weapons"; editorCategory = "EdCat_WeaponAttachments"; editorSubcategory = "EdSubcat_TopSlot_Optics"; .................................................................................. class ItemInfo : InventoryOpticsItem_Base_F { .................................................................................. class OpticsModes { .................................................................................. }; }; }; explication: https://community.bistudio.com/wiki/Eden_Editor:_Object_Categorization I tested several ways, I searched the forum. I can not find how to do. Is it possible to do that? :huh: -
Ruins not being placed with class DestructionEffects
jaac replied to mattaust's topic in ARMA 3 - ADDONS - CONFIGS & SCRIPTING
Hello I have same problem. replaceDamaged work very well class DestructionEffects don't work it's discouraging :( -
Hello I try to import a house. From Bis Arma2 addons to Arma3. I import all the textures, its good. But I have this error message when I run Buldozer viewers: core\cursor\data\cursor2_ca.paa Obviously it is a way to dta (Arma2). I can not remove it... :huh: Well, the problem corrects from himself... :huh: So Good :D
-
Truck and Trailer - Arma 3 - Standalone Released (22.10.2015)
jaac replied to dscha's topic in ARMA 3 - ADDONS & MODS: COMPLETE
MyCar is name of my Addon Script is in my addon. D41_Trailer_A is name of your trailer. See in your mlod addon. This is not the right name? -
Truck and Trailer - Arma 3 - Standalone Released (22.10.2015)
jaac replied to dscha's topic in ARMA 3 - ADDONS & MODS: COMPLETE
Yes.... I have managed "attachTo" :D it works flawlessly in editor. Now, I would like to integrate in my car addon. I tried several solutions, but it does not work. The "hint" works well, but no car on truck... :( config vehicles: class UserActions { class Putcar { displayName ="Put car on truck"; position = "doplnovani"; radius = 5; onlyForplayer= true; condition = "alive this"; statement = "[this] execvm ""\My_Addon\scripts\Putveh.sqf"";"; }; }; Script: _Mycar = _this select 0; _D41_Trailer_A = _this select 1; _Mycar attachTo [_D41_Trailer_A, [0, 0, 3.15] ]; hint "Car is on truck"; player removeaction Putcar; If you know anything about script, I gladly accept help. :P -
Truck and Trailer - Arma 3 - Standalone Released (22.10.2015)
jaac replied to dscha's topic in ARMA 3 - ADDONS & MODS: COMPLETE
Ok Thanks Is it possible to integrate it into the new version mod? How to use "attachTo" here? ;) -
Truck and Trailer - Arma 3 - Standalone Released (22.10.2015)
jaac replied to dscha's topic in ARMA 3 - ADDONS & MODS: COMPLETE
Thanks for your marvelous work :D I tried and loved... But I have a problem, how to place a car on it? (as the video) I am unable to... :huh: -
Yes Nice work I tried your method, It works... ;) But for this texture.... I have another one (other vehicle), with same method, and it does not work. :confused: TexView 2.0 bis tool for convert