diff --git a/dist/ansis/bulletin0.ans b/dist/ansis/bulletin0.ans index 2e1a4a3..7270a2c 100644 Binary files a/dist/ansis/bulletin0.ans and b/dist/ansis/bulletin0.ans differ diff --git a/dist/ansis/bulletin1.ans b/dist/ansis/bulletin1.ans index db96af3..84aa057 100644 Binary files a/dist/ansis/bulletin1.ans and b/dist/ansis/bulletin1.ans differ diff --git a/dist/ansis/issue.ans b/dist/ansis/issue.ans index d40fd47..db3217b 100644 Binary files a/dist/ansis/issue.ans and b/dist/ansis/issue.ans differ diff --git a/dist/config/bbs.ini b/dist/config/bbs.ini index 6414ed3..1e0c3e0 100644 --- a/dist/config/bbs.ini +++ b/dist/config/bbs.ini @@ -55,4 +55,5 @@ HappyNet = config/happynet.ini General Files = config/filesgen.ini [text files] -Warning = ansis/bulletin0.ans +Magicka Advertisement = ansis/bulletin0.ans +Whats New = ansis/bulletin1.ans diff --git a/dist/scripts/login_stanza.lua b/dist/scripts/login_stanza.lua index 69a72bc..25b783e 100644 --- a/dist/scripts/login_stanza.lua +++ b/dist/scripts/login_stanza.lua @@ -19,8 +19,9 @@ end -- Display Bulletins while(true) do if file_exists(bulletin_path .. "/bulletin" .. string.format("%d", i) .. ".ans") then + bbs_write_string("\027[2J\027[1;1H"); bbs_display_ansi("bulletin" .. string.format("%d", i)); - bbs_write_string("\027[0mPress any key to continue...\r\n"); + bbs_write_string("\027[1;37mPress any key to continue...\027[0m"); bbs_read_char(); else break; @@ -37,7 +38,7 @@ local machinename; bbsname, sysopname, systemname, machinename = bbs_get_info(); -bbs_write_string("\027[1;37mSystem Information\r\n"); +bbs_write_string("\r\n\r\n\027[1;37mSystem Information\r\n"); bbs_write_string("\027[1;30m----------------------------------------------\r\n"); bbs_write_string("\027[1;32mBBS Name : \027[1;37m" .. bbsname .. "\r\n"); bbs_write_string("\027[1;32mSysOp Name : \027[1;37m" .. sysopname .. "\r\n"); @@ -45,7 +46,7 @@ bbs_write_string("\027[1;32mNode : \027[1;37m" .. string.format("%d", bbs bbs_write_string("\027[1;32mBBS Version : \027[1;37m" .. bbs_version() .. "\r\n"); bbs_write_string("\027[1;32mSystem : \027[1;37m" .. systemname .. " (" .. machinename .. ")\r\n"); bbs_write_string("\027[1;30m----------------------------------------------\r\n"); -bbs_write_string("\027[0mPress any key to continue...\r\n"); +bbs_write_string("\027[1;37mPress any key to continue...\027[0m"); bbs_read_char(); -- Display Last 10 Callers @@ -55,7 +56,7 @@ local user; local location; local ltime; -bbs_write_string("\r\n\027[1;37mLast 10 callers:\r\n"); +bbs_write_string("\r\n\r\n\027[1;37mLast 10 callers:\r\n"); bbs_write_string("\027[1;30m-------------------------------------------------------------------------------\r\n"); while (i < 10) do @@ -67,7 +68,7 @@ while (i < 10) do i = i + 1; end bbs_write_string("\027[1;30m-------------------------------------------------------------------------------\r\n"); -bbs_write_string("\027[0mPress any key to continue...\r\n"); +bbs_write_string("\027[1;37mPress any key to continue...\027[0m"); bbs_read_char(); -- Check email @@ -75,9 +76,9 @@ bbs_read_char(); local email = bbs_get_emailcount(); if (email > 0) then - bbs_write_string(string.format("\r\nYou have %d emails in your inbox\r\n", email)); + bbs_write_string(string.format("\r\n\r\nYou have %d emails in your inbox\r\n", email)); else - bbs_write_string("\r\nYou have no email\r\n"); + bbs_write_string("\r\n\r\nYou have no email\r\n"); end bbs_mail_scan();