home *** CD-ROM | disk | FTP | other *** search
/ GameStar 2005 February / Gamestar_70_2005-02_dvd.iso / DVDStar / Editace / ogiergdk_kott_101.exe / DevConfig.mpp next >
Text File  |  2004-01-05  |  2KB  |  46 lines

  1.  
  2. void main()
  3. {
  4.     // -------------------------------------------------------------------
  5.     // Keyboard & mouse
  6.     // -------------------------------------------------------------------
  7.     bind "esc", "releaseall; cl_opengamemenu";
  8.     bind "f1", "releaseall; cl_opengamemenu";
  9.  
  10.     bind "f2", "sv_set \"timescale\",\"0.3\"; echo \"Timescale set to 0.3\"";
  11.     bind "ctrl+f2", "sv_set \"timescale\",\"1\"; echo \"Timescale set to 1\"";
  12.     bind "f3", "cl_showobjphys 1; echo \"Showing object physics\"";
  13.     bind "ctrl+f3", "cl_showobjphys 0; echo \"Hiding object physics\"";
  14.     bind "f4", "xr_showbounding 1; echo \"Showing model boundings\"";
  15.     bind "ctrl+f4", "xr_showbounding 0; echo \"Hiding object physics\"";
  16.     bind "shift+f4", "cmd selfsummon";
  17.     bind "f5", "sv_perfgraph 1; echo \"Server performance meters enabled\"";
  18.     bind "shift+f5", "cl_perfgraph 1; echo \"Client performance meters enabled\"";
  19.     bind "ctrl+shift+f5", "xr_showtiming 2; echo \"Model performance meters enabled\"";
  20.     bind "ctrl+f5", "sv_perfgraph 0;cl_perfgraph 0;xr_showtiming 0; echo \"Performance meters disabled\"";
  21.     bind "f6", "xr_flares 0; xr_dlight 1; xr_wallmarks 1; xr_fastlight 0; xr_lodoffset 4000; xr_surfoptions 3; echo \"Medium quality.\"";
  22.     bind "shift+f6", "xr_flares 0; xr_dlight 0; xr_wallmarks 0; xr_fastlight 0; xr_lodoffset 4000; xr_surfoptions 3; echo \"Low quality.\"";
  23.     bind "ctrl+f6", "xr_flares 0; xr_dlight 1; xr_wallmarks 1; xr_fastlight 0; xr_lodoffset 0; xr_surfoptions 0; echo \"High quality.\"";
  24.     bind "f7", "cl_addvbskip -1; echo \"VB-Skip -1\"";
  25.     bind "ctrl+f7", "cl_addvbskip 1; echo \"VB-Skip +1\"";
  26.     bind "f8", "cl_addvbskip -10; echo \"VB-Skip -10\"";
  27.     bind "ctrl+f8", "cl_addvbskip 10; echo \"VB-Skip +10\"";
  28.     bind "f10", "rset(\"env\\\\vid_gamma=1.5\"); echo \"Gamma set to 1.5\"";
  29.     bind "shift+f10", "rset(\"env\\\\vid_gamma=1.0\"); echo \"Gamma set to 1.0\"";
  30.  
  31.     bind "f11", "capturescreen";
  32.     bind "f12", "capturescreen";
  33.  
  34.     bind "0", "cmd noclip";
  35.     bindscan 12, "cmd physlog";
  36.     bindscan 13, "cmd giveall";
  37.     bind "k", "cmd kill";
  38.     bind "n", "cyclecameramode 0, 1";
  39.     bind "m", "cg_menu \"cheatmenu\"";
  40.  
  41.     bind "shift+8", "xr_drawmode 1";
  42.     bind "shift+9", "xr_drawmode 0";
  43.     bind "ctrl+8", "r_enable(R_FLG_WIRE)";
  44.     bind "ctrl+9", "r_disable(R_FLG_WIRE)";
  45. }
  46.