22 lines
No EOL
501 B
Lua
Executable file
22 lines
No EOL
501 B
Lua
Executable file
--[[
|
|
Script Name : SpawnScripts/qeynos_combined02/MasterRysianGladewalker.lua
|
|
Script Author : Rylec
|
|
Script Date : 2021.08.18 05:08:17
|
|
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.."_1022.mp3", "", "hello", 0, 0, Spawn)
|
|
end
|
|
|
|
function respawn(NPC)
|
|
spawn(NPC)
|
|
end |