Changed default theme

This commit is contained in:
Andrew Pamment
2018-02-04 16:36:49 +10:00
parent 223705d6b3
commit 84f85ab626
12 changed files with 26 additions and 3 deletions

19
dist/scripts/logoff.lua vendored Normal file
View File

@@ -0,0 +1,19 @@
function menu()
-- display menu ansi
bbs_write_string("\027[2J");
bbs_display_ansi("logoff");
-- display prompt
bbs_write_string(string.format("\r\n\027[1;34m [\027[0;36mTime Left\027[1;37m %dm\027[34m]-> \027[0m", bbs_time_left()));
-- read char entered
cmd = bbs_read_char();
-- do stuff if you want
-- return the char entered
return cmd;
end