# HG changeset patch # User Darkvater # Date 1129751041 0 # Node ID dbaba9ff9b94dcfcfb9257f824a3ae57cd5212aa # Parent 20b0e2a6b9b06890590b2b089b9631f18c8fab83 (svn r3069) - CodeChange: now that we have the '|' char, use that as a seperator instead of '\' as was originally intention diff -r 20b0e2a6b9b0 -r dbaba9ff9b94 console_cmds.c --- a/console_cmds.c Wed Oct 19 19:41:38 2005 +0000 +++ b/console_cmds.c Wed Oct 19 19:44:01 2005 +0000 @@ -221,7 +221,7 @@ const char *file; if (argc == 0) { - IConsoleHelp("Load a game by name or index. Usage: 'load '"); + IConsoleHelp("Load a game by name or index. Usage: 'load '"); return true; } @@ -279,7 +279,7 @@ int i; if (argc == 0) { - IConsoleHelp("List all loadable savegames and directories in the current dir via console. Usage: 'ls \\ dir'"); + IConsoleHelp("List all loadable savegames and directories in the current dir via console. Usage: 'ls | dir'"); return true; } @@ -301,7 +301,7 @@ const char *file; if (argc == 0) { - IConsoleHelp("Change the dir via console. Usage: 'cd '"); + IConsoleHelp("Change the dir via console. Usage: 'cd '"); return true; } @@ -407,7 +407,7 @@ uint i, index; if (argc == 0) { - IConsoleHelp("Unban a player from a network game. Usage: 'unban '"); + IConsoleHelp("Unban a player from a network game. Usage: 'unban '"); IConsoleHelp("For a list of banned IP's, see the command 'banlist'"); return true; } @@ -815,7 +815,7 @@ DEF_CONSOLE_CMD(ConScreenShot) { if (argc == 0) { - IConsoleHelp("Create a screenshot of the game. Usage: 'screenshot [big\\no_con]'"); + IConsoleHelp("Create a screenshot of the game. Usage: 'screenshot [big | no_con]'"); IConsoleHelp("'big' makes a screenshot of the whole map, 'no_con' hides the console to create the screenshot"); return true; } @@ -973,9 +973,9 @@ IConsolePrint( 1, " call commands with ' ...'"); IConsolePrint( 1, " - to assign strings, or use them as arguments, enclose it within quotes"); IConsolePrint( 1, " like this: ' \"string argument with spaces\"'"); - IConsolePrint( 1, " - use 'help \\' to get specific information"); - IConsolePrint( 1, " - scroll console output with shift + (up\\down)\\(pageup\\pagedown))"); - IConsolePrint( 1, " - scroll console input history with the up\\down arrows"); + IConsolePrint( 1, " - use 'help | ' to get specific information"); + IConsolePrint( 1, " - scroll console output with shift + (up | down) | (pageup | pagedown))"); + IConsolePrint( 1, " - scroll console input history with the up | down arrows"); IConsolePrint( 1, ""); return true; }