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/logout_stanza.lua
2016-09-05 14:05:17 +10:00

14 lines
205 B
Lua

function logout()
bbs_write_string("\r\n\r\nAre you sure you want to logoff (Y/N) ? ");
cmd = bbs_read_char();
if (cmd == 10) then
return 0;
end
bbs_display_ansi("goodbye");
return 1;
end