12345678910111213141516171819202122232425 |
- --[[
- Script Name : SpawnScripts/ForestRuins/FindleGimblesled.lua
- Script Purpose : Findle Gimblesled
- Script Author : John Adams
- Script Date : 2008.09.19
- Script Notes : Auto-Generated Conversation from PacketParser Data
- --]]
- function hailed(NPC, Spawn)
- FaceTarget(NPC, Spawn)
- 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)
- choice = math.random(1,3)
- if choice == 1 then
- PlayFlavor(NPC, "voiceover/english/voice_emotes/greetings/greetings_1_1006.mp3", "", "", 0, 0)
- elseif choice == 2 then
- PlayFlavor(NPC, "voiceover/english/voice_emotes/greetings/greetings_2_1006.mp3", "", "", 0, 0)
- else
- PlayFlavor(NPC, "voiceover/english/voice_emotes/greetings/greetings_3_1006.mp3", "", "", 0, 0)
- end
- end
|