eq2emu-content/SpawnScripts/OutpostOverlord/WixWimblewick.lua
2024-10-26 11:37:28 +00:00

21 lines
633 B
Lua
Executable file

--[[
Script Name : SpawnScripts/OutpostOverlord/WixWimblewick.lua
Script Purpose : Wix Wimblewick
Script Author : John Adams
Script Date : 2008.09.23
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, "", "I can't wait to get back to Temple Street.", "", 1689589577, 4560189, Spawn)
elseif choice == 2 then
PlayFlavor(NPC, "", "Wimblewick's the name, Wimblewickin is what I do. What that means, I have no idea!", "", 1689589577, 4560189, Spawn)
else
end
end