Echo

From Valve Developer Community
Revision as of 04:19, 23 July 2023 by Hoppler (talk | contribs) (more detail)
Jump to navigation Jump to search

Stub

This article or section is a stub. You can help by expanding it.

Template:Console command

echo is a console command avaliable in GoldSrc GoldSrc and Source Source titles that is used to print text into the console window. When used in tandem with scripts, the echo command can prove to be very useful in cases where you will need to debug problems.

Syntax

 echo <text>

Examples

 echo Hello world

Special use

When appended to a key bound to a + statement (but only directly), the key code will be appended

 bind shift “+duck; echo key :”

key : 79 will be seen in the console twice; once on press, once on release.