This article's documentation is for the "GoldSrc" engine. Click here for more information.
This article's documentation is for anything that uses the Source engine. Click here for more information.

Create a Mod (GoldSrc): Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
m (→‎Utilities: Updated software's image to match newer version.)
m (combine information from Create a Goldsrc-Mod into this page, preparation for merge)
 
(One intermediate revision by one other user not shown)
Line 2: Line 2:
{{gldsrc topicon}}
{{gldsrc topicon}}
{{Source topicon}}
{{Source topicon}}
{{tabs|Create_a_Mod|goldsrc=1|source=1}}
{{TabsBar|main=Create a Mod}}




Line 11: Line 11:


# Create a folder under {{Path|...\steamapps\common\Half-Life\}}, example: {{Path|...\steamapps\common\Half-Life\your_mod_name}}
# Create a folder under {{Path|...\steamapps\common\Half-Life\}}, example: {{Path|...\steamapps\common\Half-Life\your_mod_name}}
# Create a [[liblist.gam]] in the folder. You now have a mod!
# Create a [[liblist.gam]] in the folder.
# On the first line of the file, put {{code|game "[mod name]"}}, replacing {{code|[mod name]}} with the name of your mod.
# On the second line of the file, put {{code|type "[type of mod]"}}, replacing {{code|[type of mod]}} with either {{code|singleplayer_only}}, {{code|multiplayer_only}}, or nothing.
# Find the folders {{code|cl_dlls}} and {{code|dlls}}, and copy them into the folder. You now have a mod!


== Utilities ==
== Utilities ==
[[File:XBLAH's Modding Tool - Create a mod v2.5.0.png.png|thumb|392px|{{xblahmt|4}} - Creating a mod]]
[[File:XBLAH's Modding Tool - Create a mod v2.5.0.png.png|thumb|392px|{{xblahmt|4}} - Creating a mod]]
;{{Xblahmt|4}}
;{{Xblahmt|4}}
:Creating a bare-bones {{gldsrc|4}} mod usually requires more than just creating a [[liblist.gam]]. Mods based on {{gldsrc|4}} games can be created with the {{Xblahmt|4}} using an intuitive interface, that creates all the required files and directories. [[XBLAH's_Modding_Tool/Docs/Game/New_Mod|See more]].
:Creating a bare-bones {{gldsrc|4}} mod usually requires more than just creating a [[liblist.gam]]. Mods based on {{gldsrc|4}} games can be created with the {{Xblahmt|4}} using an intuitive interface, that creates all the required files and directories.


== See also ==
* [[XBLAH's_Modding_Tool/Docs/Game/New_Mod|Creating a mod with XBLAH's Modding Tool]]
* [[Half-Life SDK|Half-Life SDK Index]]
** [[:Category: GoldSrc Level Design|GoldSrc Level Design]]
** [[:Category: GoldSrc Programming|GoldSrc Programming]]
** [[:Category: GoldSrc Technical|GoldSrc Technical]]
** [[:Category: Official GoldSrc Tools|Official GoldSrc Tools from Valve]]
** [[:Category: GoldSrc Glossary|GoldSrc Glossary]]


[[Category:Modding]]
[[Category:Modding]]
[[Category:Modding]]
[[Category:Modding]]

Latest revision as of 17:58, 8 June 2025

English (en)Português do Brasil (pt-br)Translate (Translate)

edit


Creating a mod manually

It's surprisingly simple:

  1. Create a folder under 🖿...\steamapps\common\Half-Life\, example: 🖿...\steamapps\common\Half-Life\your_mod_name
  2. Create a liblist.gam in the folder.
  3. On the first line of the file, put game "[mod name]", replacing [mod name] with the name of your mod.
  4. On the second line of the file, put type "[type of mod]", replacing [type of mod] with either singleplayer_only, multiplayer_only, or nothing.
  5. Find the folders cl_dlls and dlls, and copy them into the folder. You now have a mod!

Utilities

XBLAH's Modding Tool XBLAH's Modding Tool - Creating a mod
XBLAH's Modding Tool XBLAH's Modding Tool
Creating a bare-bones GoldSrc GoldSrc mod usually requires more than just creating a liblist.gam. Mods based on GoldSrc GoldSrc games can be created with the XBLAH's Modding Tool XBLAH's Modding Tool using an intuitive interface, that creates all the required files and directories.

See also