Here's a quick one I like for automatically using my damage rage abilities.
Regex Trigger: Total: ([0-9]+)
Execute Script:
//Check rage, use abilities---------------------------------------------------
var rage = args[1];
if(rage >= 36){
send_command("golem squeeze " + get_variable("tar"));
}else if (rage >= 14){
send_command("cast windlash at " + get_variable("tar"));
}
I attempted to put this in a code block but it blew up the forums, not sure what's up with that.
Comments