GobblerocksHideout.lua 470 B

123456789101112131415161718192021
  1. --[[
  2. Script Name : ZoneScripts/Gobblerock's Hideout.lua
  3. Script Author : Premierio015
  4. Script Date : 2021.07.16 03:07:56
  5. Script Purpose :
  6. :
  7. --]]
  8. TheSewerItKey = 5321
  9. function init_zone_script(Zone)
  10. end
  11. function player_entry(Zone, Player)
  12. SendPopUpMessage(Player, "Gobblerock's Hideout", 230, 230, 230)
  13. if GetQuestStep(Player, TheSewerItKey) == 1 then
  14. SetStepComplete(Player, TheSewerItKey)
  15. end
  16. end