44 lines
		
	
	
		
			793 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			793 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
# Path to DepotDownloader
 | 
						|
DD_PATH=/home/gdc/dd
 | 
						|
 | 
						|
# Path for DepotDownloader to download to, relative to DD_PATH
 | 
						|
DD_DIR=css
 | 
						|
 | 
						|
# App ID
 | 
						|
DD_APP=232330
 | 
						|
 | 
						|
# Beta name
 | 
						|
DD_BETA=prerelease
 | 
						|
 | 
						|
# Beta passowrd, if applicable
 | 
						|
#DD_BETA_PASSWORD=passwordhere
 | 
						|
 | 
						|
# Relative path to game's engine directory from DD
 | 
						|
ENGINE_PATH_FROM_DD=${DD_DIR}
 | 
						|
# Game's directory name
 | 
						|
GAME_DIR=cstrike
 | 
						|
 | 
						|
BIN_EXT="_srv"
 | 
						|
 | 
						|
# SM gamedata engine name
 | 
						|
ENGINE_NAME=css
 | 
						|
 | 
						|
# List of gamedata files to run checks on
 | 
						|
gamedata_files=(
 | 
						|
	"sdktools.games/game.cstrike.txt"
 | 
						|
	"sdktools.games/engine.css.txt"
 | 
						|
	"sm-cstrike.games/game.css.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 $?
 |