This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
magicka/scripts_examples/mainmenu.lua
2016-04-12 15:19:56 +10:00

21 lines
307 B
Lua

function menu()
-- display menu ansi
bbs_display_ansi("mainmenu");
-- display prompt
bbs_write_string("\r\n\027[0m(LUA) TL: " .. string.format("%d", bbs_time_left()) .. "m > ");
-- read char entered
cmd = bbs_read_char();
-- do stuff if you want
-- return the char entered
return cmd;
end