So my alias looks like this
(ed|rs) her
and I'm trying to do this
I want to change what the alias does depending on which word is used, ed or rs.
(ed|rs) her
and I'm trying to do this
if %1 == "rs" then
Send("evoke rockstrike heretic")
EnableTriggerGroup("autohit", true)
SetVariable("target", "heretic")
else
Send("evoke eden harm heretic")
EnableTriggerGroup("autohit", true)
SetVariable("target", "heretic")
end
I want to change what the alias does depending on which word is used, ed or rs.