Jump to content
WelshyYT

Ace 3 Custom Medical Problem

Recommended Posts

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

@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?

 

  • Haha 1

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

×