home · contact · privacy
Make welcoming message of client slightly more helpful.
authorChristian Heller <c.heller@plomlompom.de>
Wed, 16 Dec 2020 22:36:51 +0000 (23:36 +0100)
committerChristian Heller <c.heller@plomlompom.de>
Wed, 16 Dec 2020 22:36:51 +0000 (23:36 +0100)
rogue_chat.html
rogue_chat_curses.py

index 84d481c806218a35570d937cd49e485aacbff054..f08105023e30b3d062b58e06fb9f52551647cee9 100644 (file)
@@ -570,6 +570,9 @@ let server = {
         } else if (tokens[0] === 'LOGIN_OK') {
             this.send(['GET_GAMESTATE']);
             tui.switch_mode('post_login_wait');
+            tui.log_msg('@ welcome!')
+            tui.log_msg('@ hint: see top of terminal for how to get help.')
+            tui.log_msg('@ hint: enter study mode to understand your environment.')
         } else if (tokens[0] === 'DEFAULT_COLORS') {
             terminal.set_default_colors();
         } else if (tokens[0] === 'RANDOM_COLORS') {
index ec9eee5b276b1373a77588b2cfc01a78e1625545..bfd5560e435f7d598a5d44e30dff2fb4307e9ed5 100755 (executable)
@@ -186,7 +186,9 @@ cmd_OTHER_WIPE.argtypes = ''
 def cmd_LOGIN_OK(game):
     game.tui.switch_mode('post_login_wait')
     game.tui.send('GET_GAMESTATE')
-    game.tui.log_msg('@ welcome')
+    game.tui.log_msg('@ welcome!')
+    game.tui.log_msg('@ hint: see top of terminal for how to get help.')
+    game.tui.log_msg('@ hint: enter study mode to understand your environment.')
 cmd_LOGIN_OK.argtypes = ''
 
 def cmd_ADMIN_OK(game):