Page 1 of 1

Enemy Combat Log MIA

Posted: Tue Jun 13, 2023 10:07 am
by RaginPower
I think at some point in the past I did something to disable the Enemy combat log. Its just missing from the addon. Its in the Enemy folder, but I cant access it in game. There is no Combat Log in the configuration menu. Any help would be appreciated.

Re: Enemy Combat Log MIA

Posted: Tue Jun 13, 2023 10:16 am
by Talladego
I believe the latest version of Enemy on Idrinth's Addons is taken from VinyUI and it has the Combat log disabled.

Look in the file Interface\Addons\Enemy\Code\Core\Main.lua for these lines and uncomment "Enemy.CombatLogInitialize ()".
(remove the "--" prefix to uncomment)

Code: Select all

	-- plugins initialization
	Enemy.IntercomInitialize ()
	Enemy.AssistInitialize ()
	Enemy.KillSpamInitialize ()
	Enemy.MarksInitialize ()
	Enemy.UnitFramesInitialize ()
	Enemy.GroupIconsInitialize ()
	Enemy.GuardInitialize ()
	--Enemy.ScenarioAlerterInitialize ()
	Enemy.ScenarioInfoInitialize ()
	--Enemy.TalismanAlerterInitialize ()
	Enemy.TimerInitialize ()
	--Enemy.CombatLogInitialize ()

Re: Enemy Combat Log MIA

Posted: Tue Jun 13, 2023 4:27 pm
by lemao
Talladego wrote: Tue Jun 13, 2023 10:16 am I believe the latest version of Enemy on Idrinth's Addons is taken from VinyUI and it has the Combat log disabled.

Look in the file Interface\Addons\Enemy\Code\Core\Main.lua for these lines and uncomment "Enemy.CombatLogInitialize ()".
(remove the "--" prefix to uncomment)

Code: Select all

	-- plugins initialization
	Enemy.IntercomInitialize ()
	Enemy.AssistInitialize ()
	Enemy.KillSpamInitialize ()
	Enemy.MarksInitialize ()
	Enemy.UnitFramesInitialize ()
	Enemy.GroupIconsInitialize ()
	Enemy.GuardInitialize ()
	--Enemy.ScenarioAlerterInitialize ()
	Enemy.ScenarioInfoInitialize ()
	--Enemy.TalismanAlerterInitialize ()
	Enemy.TimerInitialize ()
	--Enemy.CombatLogInitialize ()
Worked for me and i was looking for it. ty !

Re: Enemy Combat Log MIA

Posted: Tue Jun 13, 2023 4:33 pm
by Xergon
lemao wrote: Tue Jun 13, 2023 4:27 pm
Talladego wrote: Tue Jun 13, 2023 10:16 am I believe the latest version of Enemy on Idrinth's Addons is taken from VinyUI and it has the Combat log disabled.

Look in the file Interface\Addons\Enemy\Code\Core\Main.lua for these lines and uncomment "Enemy.CombatLogInitialize ()".
(remove the "--" prefix to uncomment)

Code: Select all

	-- plugins initialization
	Enemy.IntercomInitialize ()
	Enemy.AssistInitialize ()
	Enemy.KillSpamInitialize ()
	Enemy.MarksInitialize ()
	Enemy.UnitFramesInitialize ()
	Enemy.GroupIconsInitialize ()
	Enemy.GuardInitialize ()
	--Enemy.ScenarioAlerterInitialize ()
	Enemy.ScenarioInfoInitialize ()
	--Enemy.TalismanAlerterInitialize ()
	Enemy.TimerInitialize ()
	--Enemy.CombatLogInitialize ()
I removed the "--" and still doesn´t show for me ingame :(
Then u did something wrong or missing something, cuz thats the only thing that stops from CombatLog initialize. Did u save the file after u removed the "--" and then reloaded the game?

Re: Enemy Combat Log MIA

Posted: Tue Jun 13, 2023 4:38 pm
by lemao
Xergon wrote: Tue Jun 13, 2023 4:33 pm
lemao wrote: Tue Jun 13, 2023 4:27 pm
Talladego wrote: Tue Jun 13, 2023 10:16 am I believe the latest version of Enemy on Idrinth's Addons is taken from VinyUI and it has the Combat log disabled.

Look in the file Interface\Addons\Enemy\Code\Core\Main.lua for these lines and uncomment "Enemy.CombatLogInitialize ()".
(remove the "--" prefix to uncomment)

Code: Select all

	-- plugins initialization
	Enemy.IntercomInitialize ()
	Enemy.AssistInitialize ()
	Enemy.KillSpamInitialize ()
	Enemy.MarksInitialize ()
	Enemy.UnitFramesInitialize ()
	Enemy.GroupIconsInitialize ()
	Enemy.GuardInitialize ()
	--Enemy.ScenarioAlerterInitialize ()
	Enemy.ScenarioInfoInitialize ()
	--Enemy.TalismanAlerterInitialize ()
	Enemy.TimerInitialize ()
	--Enemy.CombatLogInitialize ()
I removed the "--" and still doesn´t show for me ingame :(
Then u did something wrong or missing something, cuz thats the only thing that stops from CombatLog initialize. Did u save the file after u removed the "--" and then reloaded the game?
I just made a mistake !i removed the"--" infront of " plugins initialization instead in front of Enemy.CombatLogInitialize

Re: Enemy Combat Log MIA

Posted: Tue Jun 13, 2023 6:37 pm
by RaginPower
Thank you so much. Never would have figured this out on my own.