Translocate.lua 449 B

1234567891011121314151617
  1. --[[
  2. Script Name : Spells/Mage/Sorcerer/Translocate.lua
  3. Script Author : neatz09
  4. Script Date : 2020.02.24 11:02:48
  5. Script Purpose :
  6. :
  7. --]]
  8. -- Opens a portal that transports adventurers to any Spire in Norrath.
  9. function cast(Caster, Target)
  10. local zone = GetZone(Caster)
  11. local X = GetX(Caster)
  12. local Y = GetY(Caster)
  13. local Z = GetZ(Caster)
  14. SpawnMob(zone, 121134, false, X, Y, Z)
  15. end