aPortalAbomination.lua 592 B

12345678910111213141516171819202122232425262728293031
  1. --[[
  2. Script Name : SpawnScripts/ShatteredVale3/aPortalAbomination.lua
  3. Script Author : Premierio015
  4. Script Date : 2021.08.23 07:08:59
  5. Script Purpose :
  6. :
  7. --]]
  8. local WindstalkerGrizzlyID = 361978
  9. function spawn(NPC)
  10. end
  11. function hailed(NPC, Spawn)
  12. FaceTarget(NPC, Spawn)
  13. end
  14. function death(NPC, Spawn)
  15. local zone = GetZone(NPC)
  16. local WindstalkerGrizzly = GetSpawnByLocationID(zone, WindstalkerGrizzlyID)
  17. AddTimer(WindstalkerGrizzly, 500, "Start_Bear_Timer", 1, Spawn)
  18. end
  19. function respawn(NPC)
  20. spawn(NPC)
  21. end