X-Git-Url: https://plomlompom.com/repos/%7B%7B%20web_path%20%7D%7D/decks/%7B%7Bdeck_id%7D%7D/cards/%7B%7Bcard_id%7D%7D/static/git-logo.png?a=blobdiff_plain;f=rogue_chat.html;h=47bf58d3aa4c937dfe5b078a6a161c25349ccd16;hb=dfe8541633da35717021f06839d1a386481c95f1;hp=84d481c806218a35570d937cd49e485aacbff054;hpb=dfb05774efac717d1adc699e97b6140599e5df1e;p=plomrogue2 diff --git a/rogue_chat.html b/rogue_chat.html index 84d481c..47bf58d 100644 --- a/rogue_chat.html +++ b/rogue_chat.html @@ -491,7 +491,7 @@ let server = { game.things_new = []; } else if (tokens[0] === 'STATS') { game.bladder_pressure_new = parseInt(tokens[1]) - game.weariness_new = parseInt(tokens[2]) + game.energy_new = parseInt(tokens[2]) } else if (tokens[0] === 'THING') { let t = game.get_thing_temp(tokens[4], true); t.position = parser.parse_yx(tokens[1]); @@ -549,7 +549,7 @@ let server = { game.player = game.things[game.player_id]; game.players_hat_chars = game.players_hat_chars_new; game.bladder_pressure = game.bladder_pressure_new - game.weariness = game.weariness_new + game.energy = game.energy_new game.turn_complete = true; if (tui.mode.name == 'post_login_wait') { tui.switch_mode('play'); @@ -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') { @@ -1216,7 +1219,7 @@ let tui = { }, draw_stats_line: function(n) { terminal.write(1, this.window_width, - 'WEARINESS: ' + game.weariness + + 'ENERGY: ' + game.energy + ' BLADDER: ' + game.bladder_pressure); }, draw_history: function() {