HawkAttack.lua 491 B

123456789101112131415161718192021
  1. --[[
  2. Script Name : Spells/Scout/Predator/Ranger/HawkAttack.lua
  3. Script Author : neatz09
  4. Script Date : 2020.02.03 06:02:23
  5. Script Purpose :
  6. :
  7. --]]
  8. -- Summons a pet attack hawk
  9. function cast(Caster, Target, PetID)
  10. -- Summons a pet
  11. Say(Caster, "hate transfer not implemented")
  12. SummonPet(Caster, PetID)
  13. end
  14. function remove(Caster, Target)
  15. pet = GetPet(Caster)
  16. if pet ~= nil then
  17. DismissPet(pet)
  18. end
  19. end