36 lines
844 B
Lua
36 lines
844 B
Lua
function NPC_BossMatch_Contact()
|
|
|
|
local npcId = get_npc_id()
|
|
|
|
-- SET NPC Title
|
|
dlg_title(DetermineTitle())
|
|
|
|
-- SET NPC Text
|
|
-- TODO: Add variation
|
|
dlg_text("GENERIC")
|
|
|
|
-- Questions Menu
|
|
dlg_menu("Questions", 'Questions(0)')
|
|
|
|
-- Start Selection Process
|
|
|
|
dlg_menu("Nevermind", '')
|
|
dlg_show()
|
|
end
|
|
|
|
function Questions(qCode)
|
|
|
|
dlg_title(DetermineTitle())
|
|
dlg_text("It's only natural to have questions, so fire away!")
|
|
|
|
if qCode == 0 then
|
|
dlg_menu("What is Battle Matching?", 'Questions(1)')
|
|
elseif qCode == 1 then -- What is
|
|
dlg_text("Battle Matching is a new service we offer at Horizons, you can prove your mettle against a boss or hordes of enemies, alone or with your closest friends. But beware, dark things lurk in the Timeless Arena")
|
|
elseif qCode == 101 then
|
|
end
|
|
|
|
dlg_menu("Go back", 'NPC_BossMatch_Contact()')
|
|
end
|
|
|