mirror of
https://github.com/redstrate/Kawari.git
synced 2025-06-30 11:47:45 +00:00

* Implement the following actors/entities: -Inn Toy Chest actor, which simply says you haven't unlocked mini-games -Inn Glamour Dresser actor, which simply says you haven't unlocked the GD yet -Orchestrion, which is fully functional as long as you have songs unlocked Accompanying the orchestrion is the GM orchestrion command, with a caveat: -It allows you to learn one song at a time, but id 0 (aka "all) doesn't learn a single song for some unknown reason, so I've disabled it for now. * Run cargo fmt * Update USAGE.md How many times will I forget...
10 lines
261 B
Lua
10 lines
261 B
Lua
-- TODO: actually implement this menu
|
|
|
|
function onTalk(target, player)
|
|
-- You have not yet unlocked any mini-games.
|
|
player:play_scene(target, EVENT_ID, 00000, 8192, 0)
|
|
end
|
|
|
|
function onReturn(scene, results, player)
|
|
player:finish_event(EVENT_ID)
|
|
end
|