X-Git-Url: https://plomlompom.com/repos/%7B%7Bprefix%7D%7D/add_free?a=blobdiff_plain;f=roguelike-server;h=b6d5927248a8b5f0a8204d5848cc4e9d654697e8;hb=4929d981b03789f914a184f0aabe09bab8263473;hp=f6d2601c64efbb3eb20c73fe9b749f514d4fffac;hpb=4ff3620197ae91364c24260bcd0c0d222e8df95d;p=plomrogue diff --git a/roguelike-server b/roguelike-server index f6d2601..b6d5927 100755 --- a/roguelike-server +++ b/roguelike-server @@ -608,7 +608,7 @@ def build_fov_map(t): def log_help(): """Send quick usage info to log.""" strong_write(io_db["file_out"], "LOG " - + "Use 'w'/'e'/'s'/'d'/'x'/'c' to move.\n") + + "Use 'w'/'e'/'s'/'d'/'x'/'c' to move, and 'w' to wait.\n") strong_write(io_db["file_out"], "LOG " + "Use 'p' to pick up objects, and 'D' to drop them.\n") strong_write(io_db["file_out"], "LOG " @@ -619,6 +619,7 @@ def log_help(): + "Use 'l' to toggle 'look' mode (move an exploration cursor " + "instead of the player over the map).\n") strong_write(io_db["file_out"], "LOG See README file for more details.\n") + strong_write(io_db["file_out"], "LOG \n") def decrement_lifepoints(t): @@ -644,6 +645,8 @@ def decrement_lifepoints(t): if world_db["Things"][0] == t: t["fovmap"] = bytearray(b' ' * (world_db["MAP_LENGTH"] ** 2)) strong_write(io_db["file_out"], "LOG You die.\n") + strong_write(io_db["file_out"], + "LOG See README on how to start over.\n") else: t["fovmap"] = False t["T_MEMMAP"] = False