Replies: 1 comment
-
As mentioned on Discord - Variables can only be used for out of combat things like "Am i this race?" or "Am I in this covenant?" They cannot be used dynamically. No Mod or Macro can look at how many stacks of frenzy are on the pet and then react. Blizzard wants you the player to make that decision. You have to preempt when you need to refresh. You cant use a variable for this. For more information on variables see https://github.com/TimothyLuke/GSE-Advanced-Macro-Compiler/wiki/Useful-Variables |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
GSE 3.2 variable
Hallo ich möchte Stachel pfeil so einsetzen das wenn 3 stacks raserei auf dem pet ist nur noch aufgefrischt wird. Ich dachte es geht mit variablen abewr es geht nicht. Kann mir einer helfen?
for example created by Chatgpt.com (local name, _, _, _, _, _, _, _, _, _, _, stackCount = UnitBuff("pet", "Raserei")
if stackCount and stackCount < 3 then
return true
else
return false
end
)
Beta Was this translation helpful? Give feedback.
All reactions