

felipechapmanfromm
Member-
Content Count
44 -
Joined
-
Last visited
-
Medals
Community Reputation
5 NeutralAbout felipechapmanfromm
-
Rank
Lance Corporal
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
Custom textured UAV backpack resetting once disassembled
felipechapmanfromm posted a topic in ARMA 3 - MISSION EDITING & SCRIPTING
I have retextured a UAV backpack and it is all working great, apart from the fact that when you assemble then disassemble the drone, the backpack texture changes back to the original IDAP texture. The two questions I have are: How do I prevent this from happening? Is there a way to texture the assembled drone, so it has a custom texture once assembled out of that specific backpack? Any responses are appreciated. Cheers -
Separate markers for rscMapControl in dialog [SOLVED]
felipechapmanfromm posted a topic in ARMA 3 - MISSION EDITING & SCRIPTING
I've made a dialog that has a map with selectable markers that you can teleport to... but I was trying to come up with a way to make markers blink when selected (using the blinkMarker function) without this showing on the main map too, and I'm stuck for ideas 😞 Is this even possible? And if so, how? Currently I am thinking of finding a way to detect when the dialog is open, and only allow the markers to blink when this is true. Any input would be appreciated, Cheers Edit: SOLVED! I added a local shadow to the selected marker which then is removed onUnload. The marker shadow is recalculated on each map click, along with the selected marker, which allows for only one shadow to be active at once. -
Need help disabling ace AI healing only in a specific unit
felipechapmanfromm replied to Klavino's topic in ARMA 3 - MISSION EDITING & SCRIPTING
I know this is very very late, but posting for the benefit of others trying to find the answer (I was one of them!) The fix to this issue is to use: _unit setVariable ["ace_medical_ai_lastFired", 9999999]; //Disable AI to self healing This will prevent _unit from healing 😉 -
help prevent civilans healing with ACE3
felipechapmanfromm replied to felipechapmanfromm's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Sorry about that, disabling medic AI worked, thanks! Is there any way to do this on a unit to unit basis? Cheers -
help prevent civilans healing with ACE3
felipechapmanfromm posted a topic in ARMA 3 - MISSION EDITING & SCRIPTING
I am making an addon that the whole point is having to heal injured civilians, but I have found the issue that even when I removeAllItems the AI still magically heals themselves. I have heard that this is a feature of ace3 as standard AI don't carry enough medical supplies, is there anyway I can disable this feature or just prevent/inturrupt the AI from healing. Any help is appreciated 🙂 Cheers -
Strange shadow from custom cap
felipechapmanfromm replied to felipechapmanfromm's topic in ARMA 3 - ADDONS - CONFIGS & SCRIPTING
Seems like I have fixed the shadow issue. I just removed this line: hiddenSelectionsMaterials[] = {"\A3\Characters_F\Common\data\capb.rvmat"}; I get this error when I add the cap in the editor, any insight into this? Cheers -
Strange shadow from custom cap
felipechapmanfromm replied to felipechapmanfromm's topic in ARMA 3 - ADDONS - CONFIGS & SCRIPTING
Thanks for your input anyway 😉 Im not sure if this helps but it seem that you can actually see it through grass and walls. https://imgur.com/a/pXHw6Lz -
Strange shadow from custom cap
felipechapmanfromm replied to felipechapmanfromm's topic in ARMA 3 - ADDONS - CONFIGS & SCRIPTING
Thanks for your reply, I have not touched the model... I used the default bohemia cap "\A3\Characters_F\Common\capb", so shouldn't it keep all the default settings other than the ones I have changed in the config? I also ommited this: class Headgear_Base_F: ItemCore { class ItemInfo; }; and replaced it with: class HeadgearItem; at the start of the helmet config as I could not get multiple classes of helmet to work with the code above. Is this an issue? Thanks 🙂 -
Strange shadow from custom cap
felipechapmanfromm posted a topic in ARMA 3 - ADDONS - CONFIGS & SCRIPTING
There is a strange shadow cast from a cap I added in, i'm pretty sure it's my config.cpp. It only seems to be present when there is only one character in the editor. It also throws various errors like the one below but with different endings after the '.'. Here are some screenshots: https://imgur.com/a/S3yC7UB Here is the section within config.cpp: class Headgear_Base_F; class Headgear_H_Cap; class SAR_Cap: Headgear_H_Cap { author = "baconbore"; displayName = "Custom Cap"; picture = ""; model = "\A3\Characters_F\Common\capb"; hiddenSelections[] = {"camo"}; hiddenSelectionsTextures[] = {"\MyAddon\Data\cap_SAR.paa"}; hiddenSelectionsMaterials[] = {"\A3\Characters_F\Common\data\capb.rvmat"}; class ItemInfo: HeadgearItem { mass = 4; allowedSlots[] = {901,605}; uniformModel = "\A3\Characters_F\Common\capb"; modelSides[] = {3,1}; hiddenSelections[] = {"camo"}; armor = "0"; }; }; Any replies are appreciated. Cheers -
Custom Quad bike textures not showing SOLVED
felipechapmanfromm posted a topic in ARMA 3 - ADDONS - CONFIGS & SCRIPTING
I copied the code from my working offroad texture, modified it for the quad and placed it directly below in cfgVehicles within the config.cpp. In Eden editor the bike shows in the spawn menu but spawns with a default texture. Any help is appreciated. class C_Quadbike_01_F; class Custom_Quadbike: C_Quadbike_01_F { crew = "Custom_crew_F"; side = 1; scope = 2; scopeCurator = 2; vehicleClass = "Car"; faction = "Custom_Faction"; displayName = "Custom Quad Bike"; hiddenSelections[] = {"camo"}; hiddenSelectionsTextures[] = {"\MyAddon\Data\custom_quad_bike.paa"}; class EventHandlers { init = "(_this select 0) setVariable [""BIS_enableRandomization"", false];"; }; }; Cheers SOLVED: 'camo' in hiddenSelections should be 'camo1' -
how do I find nearest vehicle then assign as cargo for that vehicle
felipechapmanfromm replied to felipechapmanfromm's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Thanks, I will try that when I get in. Cheers -
how do I find nearest vehicle then assign as cargo for that vehicle
felipechapmanfromm replied to felipechapmanfromm's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Hi, the heli is a helenic eurocopter, it has passenger seats, I am trying to get the AI to get in passenger seat, as I said before it works with moveInCargo, but there is no animation. Cheers! -
how do I find nearest vehicle then assign as cargo for that vehicle
felipechapmanfromm replied to felipechapmanfromm's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Hi there again, Your code works but when I do casSpawn assignAsCargo _veh; [casSpawn] orderGetIn true; The AI move in front of the Heli and does not get in, so I used moveInCargo, That works but there is not animation, How do I use assignAsCargo properly / get it to work. Cheers. -
how do I find nearest vehicle then assign as cargo for that vehicle
felipechapmanfromm replied to felipechapmanfromm's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Thanks for the responses guys, I will test them now! -
how do I find nearest vehicle then assign as cargo for that vehicle
felipechapmanfromm replied to felipechapmanfromm's topic in ARMA 3 - MISSION EDITING & SCRIPTING
So I have modified my code but now how have an undiffined variable in expression _veh, when it is defined _nObj = nearestObjects[casPos, ["sarheli0","sarheli1","sarheli2"],100]; _veh = _nObj select 0; casSpawn assignAsCargo _veh; [casSpawn] orderGetIn true; hint _veh; heres my code. Thanks