Create a Mod
{{subst:#if:|||
Important step for replacing wikilinks after you've created this page
After you click 'Edit' do what the image shows. If you can't see editing toolbar you need to enable it in 'Preferences' -> Editing -> checkbox 'Enable the editing toolbar'
- Siehe auch: {{LAuto}}
--- DON'T JUST BLINDLY DELETE THIS PART. DO REPLACE THE LINKS AND CATEGORIES. THE PICTURE SHOWS HOW TO USE IT ! ---
SEARCH FOR: \[\[(?!#|File(?:[ _]talk)?:|Image(?:[ _]talk)?:|Media:|Template(?:[ _]talk)?:|MediaWiki(?:[ _]talk)?:|Talk:|Category[ _]talk:|Project[ _]talk:|Valve[ _]Developer[ _]Community[ _]talk:|Help[ _]talk:|User(?:[ _]talk)?:|c:|commons:|Dictionary:|Google:|GoogleGroups:|IMDB:|M:|Meta:|Metawikipedia:|MW:|SdkBug:|SourceForge:|Steampowered:|W:|Wiki:|WikiBooks:|Wikipedia:|Wikiquote:|Wiktionary:|WP:)(:?(?:Category|Category|Help|Project|Valve[ _]Developer[ _]Community|Special|)(?:[^\|\]]+))(\|?.*?)\]\]
REPLACE WITH: {{subst:LAuto|$1$2}}
}}
As a courtesy, please do not edit this while this message is displayed.
If this page has not been edited for at least several hours to a few days, please remove this template. This message is intended to help reduce edit conflicts; please remove it between editing sessions to allow others to edit the page.
The person who added this notice will be listed in its edit history should you wish to contact them.

This page either contains information that is only partially or incorrectly translated, or there isn't a translation yet.
If this page cannot be translated for some reason, or is left untranslated for an extended period of time after this notice is posted, the page should be requested to be deleted.
Also, please make sure the article tries to comply with the alternate languages guide.
The Create a Mod wizard automates the process of creating a Source mod. It:
- Creates a new mod under
steamapps\SourceMods\
- Installs a copy of the source code, with associated Visual Studio Project File
- Creates a Game Configuration for your mod in the Source SDK

Engine branch
Before starting a mod you need to choose which version of Source you will use. Change the SDK's engine version to the one you want.
Source 2006
- Outdated - Original
Half-Life 2: Episode One mod. Only included for backwards compatibility reasons.
Source 2007
- Outdated - Original
Orange Box branch mod. Only included for backwards compatibility reasons.
Source 2009
- Outdated - Updated Orange Box mod. You cannot make a mod for
Source 2009 due to lack of SDK Base for this branch. However, you can make a content-only mod of a 2009 game by following Creating a Mod manually.
Alien Swarm (via Alien Swarm SDK)
- The oddball of the bunch. Alien Swarm is totally free to play, also has newer features from Left 4 Dead engine branch, and its SDK includes source code, but it's source code is for a top-down shooter. It also lacks many of the HL2-compatible code's peripheral tools and cannot access HL2's content. This branch is not cross-platform (Mac/Linux) friendly.
Source 2013
- This branch is recommended for most users. In 2013, Valve phased out the Source SDK with the release of SteamPipe. With this change, they updated the source code to the latest version of the Source-1-Engine for the HL2-based engine branch. This time around, the source code is not made available via an SDK launcher, but is instead hosted on GitHub. See Source SDK 2013 for more information.






The SDK wizard
Project type
When you start the wizard, you will have to choose which project to work with.
- Half-Life 2 Single Player
- Projects for
or
. If you do not own
/
this option will be greyed out.
- Half-Life 2 Multiplayer
- Projects for Half-Life 2: Deathmatch. This option is only available if you own Half-Life 2: Deathmatch; otherwise it will be greyed out.
- Multiplayer mod from template
- A specially-created SDK project that allows you to configure settings such as if your mod is team based, or if you have abilities such as sprinting and prone. This option does not require Half-Life 2: Deathmatch.
- Source code only
- Dumps the code without creating an actual mod. This option is handy if you are just creating a server plugin.
Whichever option you choose, you get the same actual source code files (even if you didn't own one or another game). You also get an "everything" solution which includes a collection of development tools.
Mod Information
The first option on this page is where you want the source code extracted to. The second is the name you want to use, which also defines the output folder for your compiled content (does not appear if you chose source code only).
Creating a mod manually
It's surprisingly simple:
- Create a folder under
steamapps\SourceMods\
(A mod can actually reside anywhere, but placing it here allows Steam to detect and launch it.) - Create a gameinfo.txt in the folder. You now have a mod!
- Open the SDK launcher and switch to the relevant engine branch.
- Choose "Edit Game Configurations" and click "Add". Enter your mod's name and folder.
To get the source code (or indeed any other files of Valve's that you want to modify), visit GitHub's Source SDK 2013 page.
For earlier versions of Source SDK (2006, 2007), you will need to use GCFScape and access depot_211_dir.vpk
in the Steam\SteamApps\common\SourceSDK\vpks
folder. Remember to change the custom build steps to point to your mod's folder.
Utilities


XBLAH's Modding Tool
- Creating a bare-bones
Source mod usually requires more than just creating a gameinfo.txt. Mods based on
Source games can be created with the
XBLAH's Modding Tool using an intuitive interface, that creates all the required files and directories.
Mapbase mods are also supported. See more.