x - move south-west
c - move south-east
+w - wait one turn
+
l - toggle "look" mode, investigate map cells by moving a cursor over the map
instead of the player avatar
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 "
+ "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):