doorsecretboss.lua 525 B

1234567891011121314151617181920212223242526272829
  1. --[[
  2. Script Name : SpawnScripts/WailingCaves/doorsecretboss.lua
  3. Script Author : Premierio015
  4. Script Date : 2020.07.04 06:07:17
  5. Script Purpose :
  6. :
  7. --]]
  8. local WorgMasterID = 404870
  9. function spawn(NPC)
  10. end
  11. function casted_on(NPC, Spawn, Message)
  12. if Message == "Open" then
  13. local WorgMaster = GetSpawnByLocationID(NPC, WorgMasterID)
  14. MoveToLocation(WorgMaster, -266.80, -49.44, -74.92, 2)
  15. end
  16. end
  17. function respawn(NPC)
  18. spawn(NPC)
  19. end