Vampirism.lua 482 B

1234567891011121314151617
  1. --[[
  2. Script Name : Spells/Mage/Summoner/Necromancer/Vampirism.lua
  3. Script Author : neatz09
  4. Script Date : 2019.11.09 07:11:29
  5. Script Purpose :
  6. :
  7. --]]
  8. -- Info from spell_display_effects (remove from script when done)
  9. -- Summons a limited pet to aid the caster
  10. function cast(Caster, Target, PetID)
  11. local x = GetX(Caster)
  12. local y = GetY(Caster)
  13. local z = GetZ(Caster)
  14. SummonDumbFirePet(Caster, Target, PetID, x, y, z)
  15. end