summaryrefslogtreecommitdiff
path: root/console_cmds.c
diff options
context:
space:
mode:
authorDarkvater <darkvater@openttd.org>2005-10-19 19:44:01 +0000
committerDarkvater <darkvater@openttd.org>2005-10-19 19:44:01 +0000
commitafc9951648e886c6e645f2b72b2da4411ba85ca8 (patch)
tree06113c4a870224317e22a20cc7ca03d3da4856a6 /console_cmds.c
parent4fb76f67aecbe41198920f4fb07c978cf2e05b65 (diff)
downloadopenttd-afc9951648e886c6e645f2b72b2da4411ba85ca8.tar.xz
(svn r3069) - CodeChange: now that we have the '|' char, use that as a seperator instead of '\' as was originally intention
Diffstat (limited to 'console_cmds.c')
-rw-r--r--console_cmds.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/console_cmds.c b/console_cmds.c
index 38c8a78cb..dd1478375 100644
--- a/console_cmds.c
+++ b/console_cmds.c
@@ -221,7 +221,7 @@ DEF_CONSOLE_CMD(ConLoad)
const char *file;
if (argc == 0) {
- IConsoleHelp("Load a game by name or index. Usage: 'load <file \\ number>'");
+ IConsoleHelp("Load a game by name or index. Usage: 'load <file | number>'");
return true;
}
@@ -279,7 +279,7 @@ DEF_CONSOLE_CMD(ConListFiles)
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 @@ DEF_CONSOLE_CMD(ConChangeDirectory)
const char *file;
if (argc == 0) {
- IConsoleHelp("Change the dir via console. Usage: 'cd <directory \\ number>'");
+ IConsoleHelp("Change the dir via console. Usage: 'cd <directory | number>'");
return true;
}
@@ -407,7 +407,7 @@ DEF_CONSOLE_CMD(ConUnBan)
uint i, index;
if (argc == 0) {
- IConsoleHelp("Unban a player from a network game. Usage: 'unban <ip\\id>'");
+ IConsoleHelp("Unban a player from a network game. Usage: 'unban <ip | id>'");
IConsoleHelp("For a list of banned IP's, see the command 'banlist'");
return true;
}
@@ -815,7 +815,7 @@ DEF_CONSOLE_CMD(ConAlias)
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 @@ DEF_CONSOLE_CMD(ConHelp)
IConsolePrint( 1, " call commands with '<command> <arg2> <arg3>...'");
IConsolePrint( 1, " - to assign strings, or use them as arguments, enclose it within quotes");
IConsolePrint( 1, " like this: '<command> \"string argument with spaces\"'");
- IConsolePrint( 1, " - use 'help <command>\\<variable>' 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 <command> | <variable>' 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;
}