1234567891011121314151617181920212223242526272829 |
- --[[
- Script Name : SpawnScripts/NorthQeynos/DelilahMeadowglow.lua
- Script Purpose : Delilah Meadowglow
- Script Author : Dorbin
- Script Date : 2022.04.23
- Script Notes : Auto-Generated Conversation from PacketParser Data
- --]]
- function spawn(NPC)
- end
- function respawn(NPC)
- spawn(NPC)
- end
- function hailed(NPC, Spawn)
- PlayFlavor(NPC, "", "The blessings of Tunare can be felt all around us!", "", 0, 0, Spawn, 0)
- RandomGreeting(NPC, Spawn)
- end
- function RandomGreeting(NPC, Spawn)
- local choice = MakeRandomInt(1,2)
- if choice == 1 then
- PlayVoice(NPC, "voiceover/english/voice_emotes/greetings/greetings_3_1063.mp3", 0, 0, Spawn)
- elseif choice == 2 then
- PlayVoice(NPC, "voiceover/english/voice_emotes/greetings/greetings_3_1005.mp3", 0, 0, Spawn)
- end
- end
|