EQ2EMu/server/SpawnScripts/BigBend/BarmaidPoppaea.lua
2022-10-16 17:40:14 +00:00

30 lines
No EOL
1.2 KiB
Lua
Executable file

--[[
Script Name : SpawnScripts/BigBend/BarmaidPoppaea.lua
Script Purpose : Barmaid Poppaea
Script Author : torsten
Script Date : 2022.07.13
Script Notes : Auto-Generated Conversation from PacketParser Data
--]]
function spawn(NPC)
end
function respawn(NPC)
spawn(NPC)
end
function hailed(NPC, Spawn)
RandomGreeting(NPC, Spawn)
end
function RandomGreeting(NPC, Spawn)
local choice = MakeRandomInt(1,3)
if choice == 1 then
PlayFlavor(NPC, "voiceover/english/human_eco_evil_1/ft/service/baker/human_baker_service_evil_1_hail_gf_96237e07.mp3", "Man do I love gnome bread! The trolls, they just love gnomes period!", "chuckle", 3504202120, 504150221, Spawn, 0)
elseif choice == 2 then
PlayFlavor(NPC, "voiceover/english/human_eco_evil_1/ft/service/baker/human_baker_service_evil_1_hail_gf_255a87b2.mp3", "Hey you want that spicy cake to go? Be careful, that one will singe your nose hairs!", "wince", 4093910034, 4247623060, Spawn, 0)
elseif choice == 3 then
PlayFlavor(NPC, "voiceover/english/human_eco_evil_1/ft/service/baker/human_baker_service_evil_1_hail_gf_49c499ab.mp3", "Hey do you see any water around here? Oh well, who needs to wash their hands?", "shrug", 745739472, 2926044111, Spawn, 0)
end
end