mirror of
https://github.com/redstrate/Kawari.git
synced 2025-06-30 11:47:45 +00:00
13 lines
746 B
Lua
13 lines
746 B
Lua
-- TODO: actually implement this menu
|
|
|
|
-- Scene 00000 will just say you can't participate or bug out (in the case of ARR hunt boards), and is also the only scene this actor has
|
|
|
|
function onTalk(target, player)
|
|
-- In expansion towns, this will display text such as "The Clan Hunt board is covered in bills showing the details of wanted monsters. However, you are unable to accept any of the bills posted at present."
|
|
-- In the ARR capitals it will still open an empty buggy hunt bill list. Presumably they work differently and hide the board entirely when you're unable to participate in The Hunt.
|
|
player:play_scene(target, EVENT_ID, 00000, 8192, 0)
|
|
end
|
|
|
|
function onReturn(scene, results, player)
|
|
player:finish_event(EVENT_ID)
|
|
end
|