Communion.lua 443 B

12345678910111213141516
  1. --[[
  2. Script Name : Spells/Mage/Summoner/Conjuror/Communion.lua
  3. Script Author : neatz09
  4. Script Date : 2019.10.26 03:10:22
  5. Script Purpose :
  6. :
  7. --]]
  8. -- Summons three powerful planar beings to attack the conjuror's enemies.
  9. function cast(Caster, Target, PetID)
  10. local x = GetX(Caster)
  11. local y = GetY(Caster)
  12. local z = GetZ(Caster)
  13. SummonDumbFirePet(Caster, Target, PetID, x, y, z)
  14. end