Console: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
(added example of find command) |
||
Line 2: | Line 2: | ||
[[Image:Developer-console.jpg|thumb|The Console]] | [[Image:Developer-console.jpg|thumb|The Console]] | ||
The '''console''' allows you to enter commands to the Source engine while testing a map or mod. | The '''console''' allows you to enter commands to the Source engine while testing a map or mod. In order to use it, click the Advanced button of the Keyboard tab in the game options and check the option for turning on the console with the ~ key. Then click Apply. Henceforth, the console can be opened or closed with the ~ key. | ||
Enter commands by typing in the box at the bottom. | Enter commands by typing in the box at the bottom. Typing <code>help</code> will provide some instructions. | ||
Type <code>find <substring></code> to look for console commands related to a specific topic (i.e. typing <code>find npc</code> would show a listing of NPC debugging commands such as <code>npc_go</code> and <code>npc_create</code>. | |||
See [[Developer Console]] for detailed instructions in using the console. | See [[Developer Console]] for detailed instructions in using the console. |
Revision as of 11:37, 17 August 2005
The console allows you to enter commands to the Source engine while testing a map or mod. In order to use it, click the Advanced button of the Keyboard tab in the game options and check the option for turning on the console with the ~ key. Then click Apply. Henceforth, the console can be opened or closed with the ~ key.
Enter commands by typing in the box at the bottom. Typing help
will provide some instructions.
Type find <substring>
to look for console commands related to a specific topic (i.e. typing find npc
would show a listing of NPC debugging commands such as npc_go
and npc_create
.
See Developer Console for detailed instructions in using the console.