aQeynosianscout429376.lua 784 B

1234567891011121314151617181920212223242526272829303132
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aQeynosianscout429376.lua
  3. Script Author : Rylec
  4. Script Date : 2021.01.05 09:01:01
  5. Script Purpose :
  6. :
  7. --]]
  8. function spawn(NPC)
  9. end
  10. function hailed(NPC, Spawn)
  11. FaceTarget(NPC, Spawn)
  12. math.randomseed(os.time())
  13. voice = math.random (1,3)
  14. PlayFlavor(NPC, "voiceover/english/voice_emotes/greetings/greetings_"..voice.."_1005.mp3", "", "", 0, 0, Spawn)
  15. text = math.random(1,2)
  16. if text == 1 then
  17. Say(NPC, "The easiest way to the forward camp is down this cliff wall to the east here.")
  18. else
  19. Say(NPC, "Head east down this wall to get to Oofala's camp.")
  20. end
  21. end
  22. function respawn(NPC)
  23. end