}
}
- case "radar":
+ case "scoreboard_columns_set":
{
- if(argv(2))
- hud_panel_radar_maximized = (stof(argv(2)) != 0);
- else
- hud_panel_radar_maximized = !hud_panel_radar_maximized;
+ Cmd_HUD_SetFields(argc);
return;
}
-
- case "scoreboard_columns_set":
+
+ case "scoreboard_columns_help":
{
- Cmd_HUD_SetFields(argc); // todo update this function
+ Cmd_HUD_Help();
return;
}
-
- case "scoreboard_columns_help":
+
+ case "radar":
{
- Cmd_HUD_Help(argc); // todo update this function
+ if(argv(2))
+ hud_panel_radar_maximized = (stof(argv(2)) != 0);
+ else
+ hud_panel_radar_maximized = !hud_panel_radar_maximized;
return;
}
}
- return;
}
default:
print("Incorrect parameters for ^2hud^7\n");
case CMD_REQUEST_USAGE:
{
- print("\nUsage:^3 cl_cmd hud action [configname | radartoggle]\n");
+ print("\nUsage:^3 cl_cmd hud action [configname | radartoggle | layout]\n");
print(" Where 'action' is the command to complete,\n");
print(" 'configname' is the name to save to for \"save\" action,\n");
- print(" and 'radartoggle' is to control hud_panel_radar_maximized for \"radar\" action.\n");
- print(" Full list of commands here: \"configure, save, radar.\"\n");
+ print(" 'radartoggle' is to control hud_panel_radar_maximized for \"radar\" action,\n");
+ print(" and 'layout' is how to organize the scoreboard columns for the set action.\n");
+ print(" Full list of commands here: \"configure, save, scoreboard_columns_help, scoreboard_columns_set, radar.\"\n");
return;
}
}
default:
case CMD_REQUEST_USAGE:
{
- print("\nUsage:^3 cl_cmd mapvote_download mapid\n");
+ print("\nUsage:^3 cl_cmd mv_download mapid\n");
print(" Where 'mapid' is the id number of the map to request an image of on the map vote selection menu.\n");
return;
}
// ==============================================
// CSQC client commands code, written by Samual
-// Last updated: November 26th, 2011
+// Last updated: December 17th, 2011
// ==============================================
void Cmd_HUD_SetFields(float);
-void Cmd_HUD_Help(float);
-
-.vector view_ofs;
-entity debug_shotorg;
\ No newline at end of file
+void Cmd_HUD_Help();
\ No newline at end of file