- Added script support for Steam3 content (CS:GO, ND, etc.).
- Removed script steam.inf temp-move hack now that DepotDownloader correctly handles checksums.
- Updated symbols.txt.
- Fixed gdc having issues with gamedata files that contain new or unknown sections ("Addresses").
		
	
			
		
			
				
	
	
		
			36 lines
		
	
	
		
			716 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			716 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
# Path to DepotDownloader
 | 
						|
DD_PATH=/home/gdc/dd
 | 
						|
 | 
						|
# Path for DepotDownloader to download to, relative to DD_PATH
 | 
						|
DD_DIR=csgo
 | 
						|
 | 
						|
# AppId to use for DepotDownloader for Steam3 content (steamcmd app_update number)
 | 
						|
DD_APP=740
 | 
						|
 | 
						|
# Absolute path to game's engine directory
 | 
						|
ENGINE_PATH=${DD_PATH}/${DD_DIR}/
 | 
						|
 | 
						|
# Game's directory name
 | 
						|
GAME_DIR=csgo
 | 
						|
 | 
						|
# SM gamedata engine name
 | 
						|
ENGINE_NAME=csgo
 | 
						|
 | 
						|
# List of gamedata files to run checks on
 | 
						|
gamedata_files=(
 | 
						|
	"sdktools.games/engine.csgo.txt"
 | 
						|
	"sm-cstrike.games/game.csgo.txt"
 | 
						|
)
 | 
						|
 | 
						|
# Is game a 2006/2007 "mod" ?
 | 
						|
# If so, bin names are adjusted with _i486 suffix and no update check will be done
 | 
						|
MOD=0
 | 
						|
 | 
						|
# DO NOT EDIT BELOW THIS LINE
 | 
						|
 | 
						|
source ./gdc_core.sh $1 $2 $3 $4
 | 
						|
 | 
						|
exit $?
 |