WelshyYT 1 Posted August 22, 2019 Hello All, I am trying to make an action in the Self Actions, Medical, Head section in ACE. I have read through the source code and A) It does not show up or B) It creates a new path as soon as the interaction menu with numerous unnamed actions then finally the named ones. Can someone help me please? My Code - https://pastebin.com/4r6cFvBZ Share this post Link to post Share on other sites
Maff 251 Posted August 22, 2019 @WelshyYT You owe me at least 20 beers! 😑 class CfgPatches { class WELSHY_ACE_Temp { name = "ACE Temperature"; author = "Welshy"; url = "-"; requiredVersion = 1.6; requiredAddons[] = {"A3_Functions_F","ace_main","ace_interaction","ace_medical"}; units[] = {}; weapons[] = {}; }; }; class CfgVehicles { class Man; class CAManBase: Man { class ACE_Actions { class ACE_Head { class WELSH_mainChkTemp { displayName = "[ - ] Check Temperature"; selection = "pilot"; distance = 1.50; condition = ""; statement = "hint 'This man is on FIRE!';"; exceptions[] = {"isNotSwimming"}; }; }; }; class ACE_SelfActions { class Medical { class ACE_Head { class WELSH_selfChkTemp { displayName = "[ - ] Check Temperature"; selection = "pilot"; distance = 1.50; condition = ""; statement = "hint 'This man is on FIRE!';"; exceptions[] = {"isNotSwimming"}; }; }; }; }; }; }; Still need to do the Medical Menu action? 1 Share this post Link to post Share on other sites