Page 2 of 3

Re: CastSequencer Addon Broken After Last Patch

Posted: Sun May 30, 2021 2:41 pm
by xyeppp
sullemunk wrote: Sun May 30, 2021 2:25 pm Image
Spoiler:
in the cartoon the cat never managed to win with the mouse

Re: CastSequencer Addon Broken After Last Patch

Posted: Sun May 30, 2021 2:53 pm
by Martialis
tvbrowntown wrote: Sun May 30, 2021 1:03 am LOL! NerfedButtons already working again anyway by adding 3 lines of code so I don't even need to bother making this :'( If it can be done in the API then it can be coded and made.
And the lines are ... ? Help us. :oops:

Re: CastSequencer Addon Broken After Last Patch

Posted: Sun May 30, 2021 3:16 pm
by sighy
GamesBond wrote: Sat May 29, 2021 9:47 pm
Stahn123 wrote: Sat May 29, 2021 8:23 pm So they basically broke the very thing they said on discord was okay to use. Of course they did.
As far as I know, the changes done will affect any similar-working addon and the respective addon's developer needs to update it and get it working again. Maybe things will be clearer soon, there are still ongoing internal discussions regarding such addons and their functionalities in relation to the game.

The RoR devs are not responsible for third party addons' maintenance, just like any other MMO.
Not 100% sure this is on topic, but touching up the Macros could help, in phasing out NB and similar addons, without nuking QoL for people that mainly look for the sequences. Just an idea.

Re: CastSequencer Addon Broken After Last Patch

Posted: Sun May 30, 2021 4:24 pm
by Tjampe
CastSequencer can be fixed by replacing line 227 in Core.lua to:

Code: Select all

SetHotbarData(hotbarSlot, action, actionId);
with this:

Code: Select all

local actionBar = math.ceil(hotbarSlot / 12)
local actionBarButton = hotbarSlot - (actionBar - 1) * 12
WindowSetGameActionData("EA_ActionBar"..tostring(actionBar).."Action" ..tostring(actionBarButton).. "Action", action, actionId, L"")
The sequences mapped to hotbar buttons will trigger but remain blank in the UI.

The latest patch basically made any addon that uses "SetHotBarData" to trigger a 3s GCD in combat, but you can still use "WindowSetGameActionData" to change the behavior of a button in the background.

Re: CastSequencer Addon Broken After Last Patch

Posted: Sun May 30, 2021 9:51 pm
by tazdingo
Tjampe wrote: Sun May 30, 2021 4:24 pm CastSequencer can be fixed by replacing line 227 in Core.lua to:

Code: Select all

SetHotbarData(hotbarSlot, action, actionId);
with this:

Code: Select all

local actionBar = math.ceil(hotbarSlot / 12)
local actionBarButton = hotbarSlot - (actionBar - 1) * 12
WindowSetGameActionData("EA_ActionBar"..tostring(actionBar).."Action" ..tostring(actionBarButton).. "Action", action, actionId, L"")
The sequences mapped to hotbar buttons will trigger but remain blank in the UI.

The latest patch basically made any addon that uses "SetHotBarData" to trigger a 3s GCD in combat, but you can still use "WindowSetGameActionData" to change the behavior of a button in the background.

hoping for confirmation that using this workaround specifically with castsequencer is not considered exploiting

Re: CastSequencer Addon Broken After Last Patch

Posted: Sun May 30, 2021 10:09 pm
by krakatoag
Spoiler:
tazdingo wrote: Sun May 30, 2021 9:51 pm
Tjampe wrote: Sun May 30, 2021 4:24 pm CastSequencer can be fixed by replacing line 227 in Core.lua to:

Code: Select all

SetHotbarData(hotbarSlot, action, actionId);
with this:

Code: Select all

local actionBar = math.ceil(hotbarSlot / 12)
local actionBarButton = hotbarSlot - (actionBar - 1) * 12
WindowSetGameActionData("EA_ActionBar"..tostring(actionBar).."Action" ..tostring(actionBarButton).. "Action", action, actionId, L"")
The sequences mapped to hotbar buttons will trigger but remain blank in the UI.

The latest patch basically made any addon that uses "SetHotBarData" to trigger a 3s GCD in combat, but you can still use "WindowSetGameActionData" to change the behavior of a button in the background.

hoping for confirmation that using this workaround specifically with castsequencer is not considered exploiting
+1

Re: CastSequencer Addon Broken After Last Patch

Posted: Mon May 31, 2021 1:23 am
by tvbrowntown
krakatoag wrote: Sun May 30, 2021 10:09 pm
Spoiler:
tazdingo wrote: Sun May 30, 2021 9:51 pm
Tjampe wrote: Sun May 30, 2021 4:24 pm CastSequencer can be fixed by replacing line 227 in Core.lua to:

Code: Select all

SetHotbarData(hotbarSlot, action, actionId);
with this:

Code: Select all

local actionBar = math.ceil(hotbarSlot / 12)
local actionBarButton = hotbarSlot - (actionBar - 1) * 12
WindowSetGameActionData("EA_ActionBar"..tostring(actionBar).."Action" ..tostring(actionBarButton).. "Action", action, actionId, L"")
The sequences mapped to hotbar buttons will trigger but remain blank in the UI.

The latest patch basically made any addon that uses "SetHotBarData" to trigger a 3s GCD in combat, but you can still use "WindowSetGameActionData" to change the behavior of a button in the background.

hoping for confirmation that using this workaround specifically with castsequencer is not considered exploiting
+1
It's within the available API for the user - so why would it be an exploit?

Re: CastSequencer Addon Broken After Last Patch

Posted: Mon May 31, 2021 6:28 am
by Przepraszam
I need to reapply changes everytime i zone to make sequencer work, anyone knows how to fix this?

Re: CastSequencer Addon Broken After Last Patch

Posted: Mon May 31, 2021 9:08 pm
by Kpi
Dont work for me... only works when im out of combat :(

Re: CastSequencer Addon Broken After Last Patch

Posted: Mon May 31, 2021 9:41 pm
by Przepraszam
Unfrotenatly they blocked it again with hotfix