CircleofGrowth.lua 458 B

123456789101112131415161718
  1. --[[
  2. Script Name : Spells/Priest/Druid/CircleofGrowth.lua
  3. Script Author : neatz09
  4. Script Date : 2020.08.29 07:08:24
  5. Script Purpose :
  6. :
  7. --]]
  8. -- Opens a portal that transports adventurers to any Druid Ring 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, 121087, false, X, Y, Z)
  15. end