Source SDK Base: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
No edit summary
(2007 is free as well now)
Line 3: Line 3:
}} __NOTOC__
}} __NOTOC__


'''Source SDK Base''' is a game/tool, shared between all owners of Valve Source games and locked to a particular [[:Category:Engine branches|engine branch]], on which modders can base their projects. Both singleplayer and multiplayer mods can use it.
'''Source SDK Base''' is a game/tool available to all Steam users which is locked to a particular [[:Category:Engine branches|engine branch]]. Compared to basing your mod on a "real" game, use of SDK Base massively increases your potential audience and prevents incompatible engine updates from breaking your code.
 
Use of SDK Base widens the audience for your mod and prevents engine updates from breaking it.


== Versions ==
== Versions ==


There are currently two versions of SDK Base: the original [[Episode One (engine branch)|Source 2006]] version (AppID 215) and the superior [[Source 2007]] version (AppID 218). 2006 is free, but 2007 requires the purchase of [http://store.steampowered.com/search/?category2=16 one of the games listed here] (free/promotional editions do ''not'' provide access).
There are currently two versions of SDK Base: the original [[Episode One (engine branch)|Source 2006]] version (AppID 215) and the superior [[Source 2007]] version (AppID 218).


[[Alien Swarm]] deserves mention here too, as it is freely available and includes source code access. {{todo|Make a page explaining which game to pick.}}
[[Alien Swarm]] deserves mention here too, as it is also freely available and also provides source code. {{todo|Make a page explaining which game to pick.}}


== Content ==
== Content ==

Revision as of 13:01, 30 June 2011

Template:Otherlang2

Source SDK Base is a game/tool available to all Steam users which is locked to a particular engine branch. Compared to basing your mod on a "real" game, use of SDK Base massively increases your potential audience and prevents incompatible engine updates from breaking your code.

Versions

There are currently two versions of SDK Base: the original Source 2006 version (AppID 215) and the superior Source 2007 version (AppID 218).

Alien Swarm deserves mention here too, as it is also freely available and also provides source code.

Todo: Make a page explaining which game to pick.

Content

  • The stock gamecode is a duplicate of Episode One's or Episode Two's, depending on which version (see below) you are using. But the only content available is that of Half-Life 2 and Half-Life 2: Lost Coast: while Zombines and Hunters exist in the code and can be spawned, they appear as errors because their models are not available. If you want to use episodic things, you will need to mount the appropriate game.
  • SDK Base might provide mods with Lost Coast's content, but dedicated servers do not. Multiplayer mods should either not use anything from Lost Coast, or include what they do use in their dedicated server download.
    Tip.pngTip:In Source 2007 or later you can remove the sourcetest SearchPath from gameinfo.txt and Lost Coast will disappear. Unfortunately, doing this under Source 2006 (Episode One) will make the game crash immediately!

Fixes

There are two small glitches:

  1. The main menu has a "Visual Stress Test" option instead of anything useful. Copy resource\GameMenu.res from another suitable game into your mod.
  2. Episode Two's flashlight and weapon pickup icons do not appear. Open resource\ClientScheme.res and add this to the Fonts section:
    		WeaponIconsSmall
    		{
    			1
    			{
    				name		HalfLife2
    				tall		32
    				weight	0
    				antialias 1
    				additive	1
    				custom	1
    			}
    		}
    

Content (2007)

Content (2006)