You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So uh, long story short I've been using this for years with a cure received set and I just finally actually noticed it hasn't worked this whole time lol.
When a trust casts cure it does put the set on, but, it seems to take it off and go back to normal before the cure lands. is there a way to add an artificial delay.
["Cure IV"]={
["complete_reaction"]="gs c reset DefenseMode",
["ready_reaction"]="gs equip sets.Cured"
Is there a way to like...
["Cure IV"]={
["complete_reaction"]=wait 1, "gs c reset DefenseMode",
["complete_reaction"]=wait1, "gs c reset DefenseMode",
["complete_reaction"]=sleep 1, "gs c reset DefenseMode",
["complete_reaction"]=delay 1, "gs c reset DefenseMode",
etc
The text was updated successfully, but these errors were encountered:
It still changes instantly, the problem I always find is context. lack of quotes or colon/semicolon or the right word or spaces
like.....
["complete_reaction"]="wait 2"; "gs c reset DefenseMode"
["complete_reaction"]="wait2"; "gs c reset DefenseMode"
["complete_reaction"]="wait 2;gs c reset DefenseMode"
["complete_reaction"]="wait2; gs c reset DefenseMode"
["complete_reaction"]=wait 2; "gs c reset DefenseMode"
["complete_reaction"]=wait2; "gs c reset DefenseMode"
I think I can make it work with a script;
["complete_reaction"]="Exec wait.txt"
and then text file reads
So uh, long story short I've been using this for years with a cure received set and I just finally actually noticed it hasn't worked this whole time lol.
When a trust casts cure it does put the set on, but, it seems to take it off and go back to normal before the cure lands. is there a way to add an artificial delay.
Is there a way to like...
["Cure IV"]={
["complete_reaction"]=wait 1, "gs c reset DefenseMode",
["complete_reaction"]=wait1, "gs c reset DefenseMode",
["complete_reaction"]=sleep 1, "gs c reset DefenseMode",
["complete_reaction"]=delay 1, "gs c reset DefenseMode",
etc
The text was updated successfully, but these errors were encountered: