TanMcNein.lua 829 B

1234567891011121314151617181920212223242526
  1. --[[
  2. Script Name : SpawnScripts/TimorousDeep/TanMcNein.lua
  3. Script Purpose : Tan McNein
  4. Script Author : John Adams
  5. Script Date : 2009.03.01
  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, 2)
  16. if choice == 1 then
  17. PlayFlavor(NPC, "", "These Sarnak are not easy to push around. I respect that.", 0, 0, Spawn)
  18. elseif choice == 2 then
  19. PlayFlavor(NPC, "voiceover/english/rok_questvo/tan_mcnein/_exp04/exp04_rgn_timorous_deep/chrykori_tie/flv_urgunk_hail_474d5298.mp3", "When my captain told me we were making for Kunark, I laughed. But here we are! And now we can't seem to leave.", "chuckle", 33590851, 2245766987, Spawn)
  20. end
  21. end