(svn r3069) - CodeChange: now that we have the '|' char, use that as a seperator instead of '\' as was originally intention
authorDarkvater
Wed, 19 Oct 2005 19:44:01 +0000
changeset 2540 dbaba9ff9b94
parent 2539 20b0e2a6b9b0
child 2541 99c04a35ebc5
(svn r3069) - CodeChange: now that we have the '|' char, use that as a seperator instead of '\' as was originally intention
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 <file \\ number>'");
+		IConsoleHelp("Load a game by name or index. Usage: 'load <file | number>'");
 		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 <directory \\ number>'");
+		IConsoleHelp("Change the dir via console. Usage: 'cd <directory | number>'");
 		return true;
 	}
 
@@ -407,7 +407,7 @@
 	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(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 '<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;
 }