CalltoHome.lua 391 B

1234567891011121314151617181920
  1. --[[
  2. Script Name : Spells/Commoner/CalltoHome.lua
  3. Script Author : neatz09
  4. Script Date : 2019.04.08 12:04:04
  5. Script Purpose :
  6. :
  7. --]]
  8. -- Teleports you to your recall point.
  9. function precast(Caster, Target)
  10. if GetBoundZoneID(Caster) == 0 then
  11. return false
  12. end
  13. return true
  14. end
  15. function cast(Caster, Target)
  16. Gate(Caster)
  17. end