questclimbingbenchmaareonacayan.lua 544 B

1234567891011121314151617181920212223
  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. end
  13. function respawn(NPC)
  14. spawn(NPC)
  15. end
  16. function casted_on(NPC, Spawn, Message)
  17. if Message == "Climb the Bench" then
  18. SetPosition(Spawn, 762.11, -20.38, 315.01, 68.11)
  19. end
  20. end