acuriouscitizen.lua 713 B

123456789101112131415161718192021222324252627
  1. --[[
  2. Script Name : SpawnScripts/Darklight/acuriouscitizen.lua
  3. Script Purpose : a curious citizen
  4. Script Author : John Adams
  5. Script Date : 2009.02.01
  6. Script Notes : Auto-Generated Conversation from PacketParser Data
  7. --]]
  8. QUEST_WANTED = 84
  9. function spawn(NPC)
  10. end
  11. function respawn(NPC)
  12. spawn(NPC)
  13. end
  14. function hailed(NPC, Spawn)
  15. FaceTarget(NPC, Spawn)
  16. if HasCompletedQuest(Spawn, QUEST_WANTED) then
  17. Say(NPC, "I heard you beat me to it. Ah well.", Spawn)
  18. else
  19. PlayFlavor(NPC, "voiceover/english/neriak/a_curious_citizen/darklight_wood/quest/hates_envy/curious_citizen_hail_db9fb451.mp3", "I wonder how well this bounty pays.", "", 3920277342, 17103451, Spawn)
  20. end
  21. end