Bloodskull5.lua 408 B

12345678910111213141516171819
  1. --[[
  2. Script Name : ZoneScripts/Bloodskull5.lua
  3. Script Author : Premierio015
  4. Script Date : 2021.05.29 09:05:35
  5. Script Purpose :
  6. :
  7. --]]
  8. local TheTrainingGrounds = 5247
  9. function init_zone_script(Zone)
  10. end
  11. function player_entry(Zone, Player)
  12. if HasQuest(Player, TheTrainingGrounds) then
  13. SetStepComplete(Player, TheTrainingGrounds, 1)
  14. end
  15. end