View Single Post
12-08-17, 06:17 PM   #33
Kakjens
A Cliff Giant
Join Date: Apr 2017
Posts: 75
Something similar to this:
Lua Code:
  1. if UnitName("target") == "somename" then
  2.     CastSpellByname("Polymorph")
  3. else
  4.     if UnitName("target") == "someothername" then
  5.         CastSpellByname("Fire Blast")
  6.     else
  7.         CastSpellByname("Frost Nova")
  8.     end
  9. end

Last edited by Kakjens : 12-08-17 at 06:22 PM.
  Reply With Quote