Liblist.gam/Half-Life: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
 
Line 1: Line 1:
= {{hl|4}} Liblist =
'''Liblist from {{hl|4}} with 25th anniversary update.'''
== Legacy==
{{codeblock|src=liblist.gam|lang=gam|<nowiki>// Valve Game Info file
{{codeblock|src=liblist.gam|lang=gam|<nowiki>// Valve Game Info file
//  These are key/value pairs.  Certain mods will use different settings.
//  These are key/value pairs.  Certain mods will use different settings.
Line 13: Line 12:
secure "1"
secure "1"
type "singleplayer_only"
type "singleplayer_only"
</nowiki>}}
animated_title "1" //25th addition
== 25th anniversary update==
hd_background "1" //25th addition
{{codeblock|src=liblist.gam|lang=gam|<nowiki>// Valve Game Info file
//  These are key/value pairs.  Certain mods will use different settings.
//
game "Half-Life"
startmap "c0a0"
trainmap "t0a0"
mpentity "info_player_deathmatch"
gamedll "dlls\hl.dll"
gamedll_linux "dlls/hl.so"
gamedll_osx "dlls/hl.dylib"
secure "1"
type "singleplayer_only"
animated_title "1"
hd_background "1"
</nowiki>}}
</nowiki>}}
[[Category:Half-Life]]
[[Category:Half-Life]]
[[Category:Files]]
[[Category:Files]]
[[Category:Liblist]]
[[Category:Liblist]]

Latest revision as of 07:45, 25 November 2023

Liblist from Half-Life Half-Life with 25th anniversary update.

liblist.gam
gam
// Valve Game Info file // These are key/value pairs. Certain mods will use different settings. // game "Half-Life" startmap "c0a0" trainmap "t0a0" mpentity "info_player_deathmatch" gamedll "dlls\hl.dll" gamedll_linux "dlls/hl.so" gamedll_osx "dlls/hl.dylib" secure "1" type "singleplayer_only" animated_title "1" //25th addition hd_background "1" //25th addition