Tutorial: Splash Screens for Steam Last edited 18 years ago2005-10-25 04:00:00 UTC

You are viewing an older revision of this wiki page. The current revision may be more detailed and up-to-date. Click here to see the current revision of this page.

This article was converted from a previous version of TWHL and may need to be reviewed

  1. The formatting may be incorrect due to differences in the WikiCode processing engine, it needs to be revised and reformatted
  2. Some information may be out of date
  3. After the article is re-formatted and updated, remove this notice and the Review Required category.
  4. Some older tutorials are no longer useful, or they duplicate information from other tutorials and entity guides. In this case, delete the page after merging any relevant information into other pages. Contact an admin to delete a page.
In this tutorial you'll find out how to use a custom splash screen in Steam HL. Start by reading the related tutorial for WON HL if you haven't already.

You will need: Modding the Steam main menu is slightly more complicated then in WON HL, but oh so much more flexible.

Part 1: Creating your mod

Do this like in the first part of the WON tutorials, except that your mod should be located in: C:Program FilesValveSteamSteamAppsyournamehalf-lifeyourmod

Furthermore, you'll have to create the following new folders. Part 2: Splash Screens

Then make your splash picture: 1024x768 is recommended. Save it somewhere as a Windows Bitmap (.BMP). Open up Steam Splash Creator and press Load Image. Select your image and press "OK". Now press Make Splash select the background/ folder you created earlier, and you're done.

Part 3: The Game Menu

You wanna edit the menu links, right? Open half-life.gcf with GCFScape and extract GameMenu.res from valve/resource in the GCF to yourmod/resource. Open GameMenu.res with a text editor. You'll see a bunch of segments of parameters.
	"9"
	{
		"label" "#GameUI_GameMenu_FindServers"
		"command" "OpenServerBrowser"
		"notsingle" "1"
	}
This one, for example, is the Find Servers button.

"label" controls the label, shockingly enough. #GameUI_GameMenu_FindServers gets the title from the language file, but unless you're planning on multilanguage support you can just change it to anything you want.

"command" controls what happens when you press the button. OpenServerBrowser is a Steam client command that opens the server browser. (Damn, it's all so self explainatory) You can change it to any other Steam command, such as OpenLoadGameDialog which would cause the button to open the load game dialog instead.

Avalible commands are: I'll let you guess what they do.

You can also use engine commands.
Entering engine <console command>, would cause the button to execute the console command when pressed. Example:
"command" "engine map c1a0"
This would cause the button to start the map c1a0.

The third parameter, "notsingle" makes the button invisible in singleplayer mode. Other similar parameters are avalible: notmulti, OnlyInGame and notsteam. They can be used together, like this:
"notsingle" "1"
"OnlyInGame" "1"
This would cause the button to only be visible when in a multiplayer game.

Part 4: Dialogs

That's not all you can customize, oh no. You can customize all the dialogs as well. They all have their own .res file in half-life.gcf/resource, and should be extracted to yourmod/resource.

NewGameDialog.res contains the new game dialog (Couldn't guess, could you?).
The dialogs are more complex then the menu. If you open the .res you'll see segments like these:
	"Training"
	{
		"ControlName"		"RadioButton"
		"fieldName"		"Training"
		"xpos"		"40"
		"ypos"		"94"
		"wide"		"220"
		"tall"		"24"
		"autoResize"		"0"
		"pinCorner"		"0"
		"visible"		"1"
		"enabled"		"1"
		"tabPosition"		"1"
		"labelText"		"#GameUI_TrainingRoom"
		"textAlignment"		"west"
		"dulltext"		"0"
		"default"		"0"
		"SubTabPosition"		"1"
	}
This is the Training Room radiobutton. "labelText" changes the label. The other stuff should be self-explainatory enough, you'll have to try and change them and see what happens.

You can also change the colour of these dialogs, but I won't explain this in any detail. The colour scheme is contained in ClientScheme.res. You should be able to figure it out or find some old Steam skin creation tutorial, as the process is pretty much the same.

Part 5: Steam Games icon
As you might have noticed, some games have small icons in the Steam games list. You can, too.

Create a 16x16 32bit tga, name it icon.tga and put in yourmod/gfx. Open liblist.gam and add a new line; icon "gfx/icon"

Now you should be all customized up and ready.

9 Comments

Commented 15 years ago2009-03-26 17:10:55 UTC Comment #100714
I found the Steam Splash Creator included with the tutorial didn't work for me fsr.... I got this one from fpsbanana, and it worked for me.
Commented 14 years ago2010-02-26 12:39:51 UTC Comment #100715
nice but hard
Commented 13 years ago2010-08-18 13:53:06 UTC Comment #100716
TY captain terror! ...and chickenfist for making this tutorial!
Commented 13 years ago2011-01-30 13:05:45 UTC Comment #100717
steam recently added a way to add a second 32x32 sized icon to display in the game description area (but no way to add game info text to show up on steam yet??? anyone?)

to make the 32x32 icon, put your 32x32 tga icon file in same location as the 16x16 but add "_big" to the end of the file name
Commented 9 years ago2014-08-14 03:53:33 UTC Comment #100718
The splash screen method is not working, i cant see it ingame. The icon method works tho. Pleas help
Commented 9 years ago2014-09-03 06:43:45 UTC Comment #100719
Is SSC virus/Trojan free? Im asking because on Virus Total the detection ratio is 1/55 and im super cautious about this kind of stuff
Commented 9 years ago2015-02-18 18:47:52 UTC Comment #100720
You have to place the background folder into the resource folder, then the splash screen should work.
Commented 2 years ago2022-02-14 20:44:47 UTC Comment #104121
Yeah I just can't seem to get the icon to work
oh well
Commented 5 months ago2023-11-21 00:18:31 UTC Comment #105646
Half-Life 25th Anniversary changes
Due to Valve reworking the game menu to visually look like the old WON menu screen, the structure of GameMenu.res is changing and in flux until Valve finalizes it.
As usual, switch to the steam_legacy beta to continue using the old specs in the meantime.

You must log in to post a comment. You can login or register a new account.