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.
The Message template has been deleted. A list of pages that transclude it are at Valve Developer Community:Message transclusions.

Resource list (GoldSrc)

From Valve Developer Community
Jump to: navigation, search

A Resource list (.res file) accompanies a map. When the map is running, it directs the server to push arbitrary files to connecting clients. This is necessary for providing custom assets other than WAD textures, such as models, skyboxes, or sounds, as only WAD textures can be packed into the BSP.

A RES file for a map called 🖿example.bsp containing a custom skybox called `mysky` would look like this:

maps/example.res
res
gfx/env/myskyup.tga gfx/env/myskydn.tga gfx/env/myskylf.tga gfx/env/myskyrt.tga gfx/env/myskyft.tga gfx/env/myskybk.tga

Tools

  • Resguy Modern resfile generator; originally created for Sven Co-op Sven Co-op but should work for all GoldSrc games.
  • RESGen Legacy tool from 2005 that can be used to generate resource lists automatically, although the results should be cleaned up manually.