Moderator elections are being held. See Valve Developer Community:Moderator elections for more details.
Users who would like to run for moderator must be autoconfirmed and have at least 100 edits. Users can check their own edit count at Special:Preferences.
This article's documentation is for the "GoldSrc" engine. Click here for more information.

Screenshot (GoldSrc)

From Valve Developer Community
Jump to: navigation, search
English (en)
Edit

A screenshot is a single rendered frame outputted to an image file. In GoldSrc GoldSrc engine, it can output BMP bitmap (.bmp) and TGA (.tga) image formats.

Both file formats are uncompressed, meaning the saved image is identical to the rendered frame with no loss of quality, however, TGAs may require third-party software (such as Adobe Photoshop) in order to open/preview the image. Screenshots can be also taken using other programs and injectors, with support for modern formats like PNG (which is lossless, like TGA, except with proper compression, aswell as compatible with more third-party software).

The default screenshot key is F5. This will take a BMP screenshot.

Limitations

Warning.pngWarning:The screenshot (for TGA) and snapshot (for BMP) commands take the screenshot immediately, displaying all current screen elements. In other words, if these commands are manually typed into the console, the screenshot will also contains the console.
PlacementTip.pngWorkaround: To take a gameplay screenshot, the command should be bound to a key and the console closed.

Console commands

screenshot Takes a TGA screenshot
snapshot Takes a BMP screenshot. The filename will have ".bmp" appended.

Files

Screenshots are saved in the 🖿<game> directory of the relevant game. By default, the naming scheme they use is "mapname####", with sequential numbering using four digits, for example "c1a00035". When the map is not loaded, the file will be saved as "Snapshot####" (for BMP) or "HalfLife##" (for TGA).

See also