aminer_female.lua 1.6 KB

1234567891011121314151617181920212223242526272829303132333435
  1. --[[
  2. Script Name : SpawnScripts/Darklight/aminer_female.lua
  3. Script Purpose : a miner <Hate's Envy Miner>
  4. Script Author : John Adams
  5. Script Date : 2009.02.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. if HasCompletedQuest(Spawn, 78) then
  16. Say(NPC, "Heard you got rid of the elemtentals, thanks!", Spawn)
  17. else
  18. choice = math.random(1,4)
  19. if choice == 1 then
  20. PlayFlavor(NPC, "voiceover/english/neriak/a_miner/darklight_wood/service/hates_envy/miner_female_2_hail_f8ea28f0.mp3", "I've had time to visit Neriak more often lately.", "", 2433324308, 3739464743, Spawn)
  21. elseif choice == 2 then
  22. PlayFlavor(NPC, "voiceover/english/neriak/a_miner/darklight_wood/service/hates_envy/miner_female_1_hail_d3092dcb.mp3", "There's not a lot of work around here for a miner... not with the Sablevein Tear in the state it's in.", "", 3088156596, 943162980, Spawn)
  23. elseif choice == 3 then
  24. PlayFlavor(NPC, "voiceover/english/neriak/a_miner/darklight_wood/service/hates_envy/miner_female_2_hail_d1d3e02e.mp3", "I've been selling pelts to Fileyl, he pays pretty well for them.", "", 2689657283, 428093927, Spawn)
  25. elseif choice == 4 then
  26. PlayFlavor(NPC, "voiceover/english/neriak/a_miner/darklight_wood/service/hates_envy/miner_female_1_hail_f0d56889.mp3", "We aren't exactly part of Neriak--and we more freely accept those who are not citizens--but we are definitely close.", "", 1234196112, 3581833599, Spawn)
  27. end
  28. end
  29. end