mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
21 lines
633 B
Lua
Executable file
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
|
|
|