GaranelRestingPlace.lua 561 B

12345678910111213141516171819202122
  1. --[[
  2. Script Name : ZoneScripts/GaranelRestingPlace.lua
  3. Script Author : Premierio015
  4. Script Date : 2023.04.22 12:04:14
  5. Script Purpose :
  6. :
  7. --]]
  8. local TheseBootsWereMadeFor = 5805 -- These Boots Were Made For QUEST ID
  9. local theGhostofGaranelRucksifID = 133784536
  10. function init_zone_script(Zone)
  11. end
  12. function player_entry(Zone, Player)
  13. if HasQuest(Player, TheseBootsWereMadeFor) then
  14. zone = GetZone(Player)
  15. SpawnGaranelRucksif = SpawnByLocationID(zone, theGhostofGaranelRucksifID)
  16. end
  17. end