VennGalewind.lua 1.1 KB

123456789101112131415161718192021222324252627
  1. --[[
  2. Script Name : SpawnScripts/TimorousDeep/VennGalewind.lua
  3. Script Purpose : Venn Galewind
  4. Script Author : John Adams
  5. Script Date : 2009.03.02
  6. Script Notes : Auto-Generated Conversation from PacketParser Data
  7. --]]
  8. function spawn(NPC)
  9. end
  10. function respawn(NPC)
  11. spawn(NPC)
  12. end
  13. function hailed(NPC, Spawn)
  14. FaceTarget(NPC, Spawn)
  15. choice = math.random(1, 3)
  16. if choice == 1 then
  17. PlayFlavor(NPC, "", "I'm trying to think of this as a vacation. The lush island makes that easy. The bloodthirsty birdmen make it considerably thougher though.", "", 0, 0, Spawn)
  18. elseif choice == 2 then
  19. PlayFlavor(NPC, "voiceover/english/rok_questvo/venn_galewind/_exp04/exp04_rgn_timorous_deep/chrykori_tie/flv_venn_hail_ca412315.mp3", "I am Venn Galewind, peon of the Far Seas Trading Co, and I am ready to get off these islands and back to civilization.", "converse_female04", 4072836816, 3301035275, Spawn)
  20. elseif choice == 3 then
  21. PlayFlavor(NPC, "", "We've traded in goods here the like of which the fops of Qeynos have never seen! But we can't seem to get boats in or out to bring them back...", "", 0, 0, Spawn)
  22. end
  23. end