TimothyLuke / GSE-Advanced-Macro-Compiler

GSE is an alternative advanced macro editor and engine for World of Warcraft.
https://discord.gg/gseunited
MIT License
208 stars 70 forks source link

cast sequence reset issue #112

Closed peacekeeper9 closed 8 years ago

peacekeeper9 commented 8 years ago

I just tested this out I have

‘/castsequence reset=6/combat/target [nomod] Hemorrhage, Mutilate, Mutilate, Mutilate, Mutilate

But since the karazhan patch any of the castsquence with a reset on them have been removed.

So when I open up /gsse even though it is written as it is above in the macro in mymacro – rogue section.

It comes up in /gsse as

“/castsequence [nomod] Hemorrhage, Mutilate, Mutilate, Mutilate, Mutilate”,

It completely ignores the reset part of that line and does not use it.

By the way this worked before the karazhan patch on tuesday 10/25/16

I ran the above line with the sequence in an ingame macro and the reset works fine. So something in GS needs to be tweaked.

TimothyLuke commented 8 years ago

Reset=time has never worked in GS-E.

It depends on you not pressing the macro key. For more info see https://github.com/TimothyLuke/GnomeSequenced-Enhanced/wiki/Understanding--castsequence

Timothy Minahan M 0406 413 680 | E timothy@minahan.net

On 27 Oct. 2016, at 2:51 pm, peacekeeper9 notifications@github.com wrote:

I just tested this out I have

‘/castsequence reset=6/combat/target [nomod] Hemorrhage, Mutilate, Mutilate, Mutilate, Mutilate

But since the karazhan patch any of the castsquence with a reset on them have been removed.

So when I open up /gsse even though it is written as it is above in the macro in mymacro – rogue section.

It comes up in /gsse as

“/castsequence [nomod] Hemorrhage, Mutilate, Mutilate, Mutilate, Mutilate”,

It completely ignores the reset part of that line and does not use it.

By the way this worked before the karazhan patch on tuesday 10/25/16

I ran the above line with the sequence in an ingame macro and the reset works fine. So something in GS needs to be tweaked.

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub, or mute the thread.

TimothyLuke commented 8 years ago

For this part

‘/castsequence reset=6/combat/target [nomod] Hemorrhage, Mutilate, Mutilate, Mutilate, Mutilate

GS-E hasn't changed but is more particular that wows parser

‘/castsequence [nomod] reset=6/combat/target Hemorrhage, Mutilate, Mutilate, Mutilate, Mutilate

Will work.

TimothyLuke

On 27 Oct. 2016, at 2:51 pm, peacekeeper9 notifications@github.com wrote:

I just tested this out I have

‘/castsequence reset=6/combat/target [nomod] Hemorrhage, Mutilate, Mutilate, Mutilate, Mutilate

But since the karazhan patch any of the castsquence with a reset on them have been removed.

So when I open up /gsse even though it is written as it is above in the macro in mymacro – rogue section.

It comes up in /gsse as

“/castsequence [nomod] Hemorrhage, Mutilate, Mutilate, Mutilate, Mutilate”,

It completely ignores the reset part of that line and does not use it.

By the way this worked before the karazhan patch on tuesday 10/25/16

I ran the above line with the sequence in an ingame macro and the reset works fine. So something in GS needs to be tweaked.

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub, or mute the thread.

peacekeeper9 commented 8 years ago

well guess I should not work on mods and macros day before patch. I thought blizzard messed everything up again. It is just a parser issue thank you so much!!!