TouchoftheGray.lua 559 B

1234567891011121314151617181920
  1. --[[
  2. Script Name : Spells/Commoner/TouchoftheGray.lua
  3. Script Author : John Adams
  4. Script Date : 2013.11.19 09:11:23
  5. Script Purpose :
  6. :
  7. --]]
  8. --local mount_favorites = { '25423', '24053', '25864', '23713', '15397', '20950', '20344', '17509' }
  9. function cast(Caster, Target)
  10. SendMessage(Caster, "Mounting...", "red")
  11. --SetMount(Caster, mount_favorites[ math.random( 1, #mount_favorites - 1 ) ] )
  12. setMount(Caster, 25864)
  13. end
  14. function remove(Caster, Target)
  15. SetMount(Caster, 0)
  16. end