FindleGimblesled.lua 877 B

12345678910111213141516171819202122232425
  1. --[[
  2. Script Name : SpawnScripts/ForestRuins/FindleGimblesled.lua
  3. Script Purpose : Findle Gimblesled
  4. Script Author : John Adams
  5. Script Date : 2008.09.19
  6. Script Notes : Auto-Generated Conversation from PacketParser Data
  7. --]]
  8. function hailed(NPC, Spawn)
  9. FaceTarget(NPC, Spawn)
  10. PlayFlavor(NPC, "", "Sleeble is a gem fanatic! What use is a chunk of rock when you can spend your time with gears and steam?", "sniff", 1689589577, 4560189)
  11. choice = math.random(1,3)
  12. if choice == 1 then
  13. PlayFlavor(NPC, "voiceover/english/voice_emotes/greetings/greetings_1_1006.mp3", "", "", 0, 0)
  14. elseif choice == 2 then
  15. PlayFlavor(NPC, "voiceover/english/voice_emotes/greetings/greetings_2_1006.mp3", "", "", 0, 0)
  16. else
  17. PlayFlavor(NPC, "voiceover/english/voice_emotes/greetings/greetings_3_1006.mp3", "", "", 0, 0)
  18. end
  19. end