EQ2EMu/server/SpawnScripts/ElddarGrove/ElgornBirchgrove.lua
2022-06-05 13:50:31 -07:00

21 lines
668 B
Lua
Executable file

--[[
Script Name : SpawnScripts/ElddarGrove/ElgornBirchgrove.lua
Script Purpose : Elgorn Birchgrove <Forest Tender>
Script Author : John Adams
Script Date : 2008.09.28
Script Notes : Auto-Generated Conversation from PacketParser Data
--]]
function hailed(NPC, Spawn)
FaceTarget(NPC, Spawn)
choice = math.random(1,2)
if choice == 1 then
PlayFlavor(NPC, "", "Please watch where you wander. My little wards are skittish, unlike their more mature relatives.", "", 1689589577, 4560189, Spawn)
elseif choice == 2 then
PlayFlavor(NPC, "voiceover/english/voice_emotes/greetings/greetings_1_1006.mp3", "", "", 0, 0, Spawn)
else
end
end