Difference between revisions of "Documentation/Engine/Console"

From SCS Modding Wiki
Jump to navigation Jump to search
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
Each SCS game has console. To enable it you need to navigate to your <code>config.cfg</code> file and set <code>g_console</code> config variable to <code>1</code>. You can access the console using <code>~</code> key by default.
+
Each SCS game has console. To enable it you need to navigate to your <code>config.cfg</code> file and set both <code>g_console</code> and <code>g_developer</code> config variables to <code>1</code>. You can access the console using <code>~</code> key by default.
  
 
=Shortcuts that you can use while using console=
 
=Shortcuts that you can use while using console=
Line 10: Line 10:
 
=See also=
 
=See also=
 
*[[Documentation/Engine/Console/Commands|Commands]]
 
*[[Documentation/Engine/Console/Commands|Commands]]
 
 
[[Category:Documentation]]
 
[[Category:Engine]]
 

Latest revision as of 11:19, 3 July 2019

Each SCS game has console. To enable it you need to navigate to your config.cfg file and set both g_console and g_developer config variables to 1. You can access the console using ~ key by default.

Shortcuts that you can use while using console

  • Ctrl + Shift - Change mode of displaying messages - errors and warnings, all.
  • PageUp and PageDown - Scroll up / down content of the console.
  • Shift + PageUp or PageDown Scroll fast up / down content of the console.
  • Ctrl + PageUp or PageDown Scroll slow up / down content of the console.

See also