X-Git-Url: http://de.git.xonotic.org/?a=blobdiff_plain;ds=sidebyside;f=qcsrc%2Fserver%2Fcommand%2Fcmd.qc;fp=qcsrc%2Fserver%2Fcommand%2Fcmd.qc;h=1b2959f40d39b018d690f1afc65a888bef7bc9ed;hb=bb4d4ccf443c2aa9a1db059874b669810f70593f;hp=b9acbfddf93d819a38aa5c912230082046b81125;hpb=939744d4779ea02689725129337e74ea12993f0c;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/server/command/cmd.qc b/qcsrc/server/command/cmd.qc index b9acbfddf..1b2959f40 100644 --- a/qcsrc/server/command/cmd.qc +++ b/qcsrc/server/command/cmd.qc @@ -84,7 +84,7 @@ void ClientCommand_autoswitch(entity caller, int request, int argc) case CMD_REQUEST_USAGE: { sprint(caller, "\nUsage:^3 cmd autoswitch \n"); - sprint(caller, " Where 'selection' controls if autoswitch is on or off.\n"); + sprint(caller, " Where controls if autoswitch is on or off.\n"); return; } } @@ -127,7 +127,7 @@ void ClientCommand_clientversion(entity caller, int request, int argc) // inter case CMD_REQUEST_USAGE: { sprint(caller, "\nUsage:^3 cmd clientversion \n"); - sprint(caller, " Where 'version' is the game version reported by caller.\n"); + sprint(caller, " Where is the game version reported by caller.\n"); return; } } @@ -152,7 +152,7 @@ void ClientCommand_mv_getpicture(entity caller, int request, int argc) // inter case CMD_REQUEST_USAGE: { sprint(caller, "\nUsage:^3 cmd mv_getpicture \n"); - sprint(caller, " Where 'mapid' is the id number of the map to request an image of on the map vote selection menu.\n"); + sprint(caller, " Where is the id number of the map to request an image of on the map vote selection menu.\n"); return; } } @@ -242,7 +242,7 @@ void ClientCommand_wpeditor(entity caller, int request, int argc) case CMD_REQUEST_USAGE: { sprint(caller, "\nUsage:^3 cmd wpeditor \n"); - sprint(caller, " Where 'action' can be:\n"); + sprint(caller, " Where can be:\n"); sprint(caller, " ^2spawn^7: spawns a waypoint at player's position\n"); sprint(caller, " ^2remove^7: removes player's nearest waypoint\n"); sprint(caller, " ^2unreachable^7: reveals waypoints and items unreachable from the current position and spawnpoints without a nearest waypoint\n"); @@ -429,7 +429,7 @@ void ClientCommand_say(entity caller, int request, int argc, string command) case CMD_REQUEST_USAGE: { sprint(caller, "\nUsage:^3 cmd say \n"); - sprint(caller, " Where 'message' is the string of text to say.\n"); + sprint(caller, " Where is the string of text to say.\n"); return; } } @@ -450,7 +450,7 @@ void ClientCommand_say_team(entity caller, int request, int argc, string command case CMD_REQUEST_USAGE: { sprint(caller, "\nUsage:^3 cmd say_team \n"); - sprint(caller, " Where 'message' is the string of text to say.\n"); + sprint(caller, " Where is the string of text to say.\n"); return; } } @@ -529,8 +529,8 @@ void ClientCommand_selectteam(entity caller, int request, int argc) case CMD_REQUEST_USAGE: { sprint(caller, "\nUsage:^3 cmd selectteam \n"); - sprint(caller, " Where 'team' is the prefered team to try and join.\n"); - sprint(caller, " Full list of options here: \"red, blue, yellow, pink, auto\"\n"); + sprint(caller, " Where is the prefered team to try and join.\n"); + sprint(caller, " Full list of options here: red, blue, yellow, pink, auto.\n"); return; } } @@ -554,7 +554,7 @@ void ClientCommand_selfstuff(entity caller, int request, string command) case CMD_REQUEST_USAGE: { sprint(caller, "\nUsage:^3 cmd selfstuff \n"); - sprint(caller, " Where 'command' is the string to be stuffed to your client.\n"); + sprint(caller, " Where is the string to be stuffed to your client.\n"); return; } } @@ -588,7 +588,7 @@ void ClientCommand_sentcvar(entity caller, int request, int argc, string command case CMD_REQUEST_USAGE: { sprint(caller, "\nUsage:^3 cmd sentcvar \n"); - sprint(caller, " Where 'cvar' is the cvar plus arguments to send to the server.\n"); + sprint(caller, " Where is the cvar plus arguments to send to the server.\n"); return; } } @@ -638,7 +638,7 @@ void ClientCommand_spectate(entity caller, int request) case CMD_REQUEST_USAGE: { sprint(caller, "\nUsage:^3 cmd spectate []\n"); - sprint(caller, " Where 'client' can be the player to spectate.\n"); + sprint(caller, " Where can be the player to spectate.\n"); return; } } @@ -662,7 +662,7 @@ void ClientCommand_suggestmap(entity caller, int request, int argc) case CMD_REQUEST_USAGE: { sprint(caller, "\nUsage:^3 cmd suggestmap \n"); - sprint(caller, " Where 'map' is the name of the map to suggest.\n"); + sprint(caller, " Where is the name of the map to suggest.\n"); return; } } @@ -719,7 +719,7 @@ void ClientCommand_tell(entity caller, int request, int argc, string command) case CMD_REQUEST_USAGE: { sprint(caller, "\nUsage:^3 cmd tell \n"); - sprint(caller, " Where 'client' is the entity number or name of the player to send 'message' to.\n"); + sprint(caller, " Where is the entity number or name of the player to send to.\n"); return; } } @@ -765,9 +765,9 @@ void ClientCommand_voice(entity caller, int request, int argc, string command) case CMD_REQUEST_USAGE: { sprint(caller, "\nUsage:^3 cmd voice []\n"); - sprint(caller, " 'voicetype' is the type of voice message, it can be one of these:\n"); + sprint(caller, " is the type of voice message, it can be one of these:\n"); sprint(caller, sprintf(" %s\n", allvoicesamples)); - sprint(caller, " and 'message' is the text message to send.\n"); + sprint(caller, " and is the text message to send.\n"); return; } }