questclimbingbenchmaareonacayan.lua 583 B

123456789101112131415161718192021222324
  1. --[[
  2. Script Name : SpawnScripts/Starcrest/questclimbingbenchmaareonacayan.lua
  3. Script Author : Jabantiz
  4. Script Date : 2018.06.14 08:06:20
  5. Script Purpose :
  6. :
  7. --]]
  8. function spawn(NPC)
  9. SetRequiredQuest(NPC,316,1,0,0,1)
  10. SetRequiredQuest(NPC,321,1,0,0,1)
  11. SetRequiredQuest(NPC,321,2,0,0,1)
  12. SetRequiredQuest(NPC,321,3,0,0,1)
  13. end
  14. function respawn(NPC)
  15. spawn(NPC)
  16. end
  17. function casted_on(NPC, Spawn, Message)
  18. if Message == "Climb the Bench" then
  19. SetPosition(Spawn, 762.11, -20.38, 315.01, 68.11)
  20. end
  21. end