12345678910111213141516171819202122 |
- --[[
- Script Name : SpawnScripts/qeynos_combined02/WandererRaegenTruthshadow.lua
- Script Author : Rylec
- Script Date : 2021.08.07 11:08:30
- Script Purpose :
- :
- --]]
- function spawn(NPC)
- end
- function hailed(NPC, Spawn)
- FaceTarget(NPC, Spawn)
- local voice = MakeRandomInt(1,3)
- PlayFlavor(NPC, "voiceover/english/voice_emotes/greetings/greetings_"..voice.."_1021.mp3", "...", "hello", 0, 0, Spawn)
- end
- function respawn(NPC)
- spawn(NPC)
- end
|