sourcemod/tools/gdc-psyfork/example-scripts/gdc_cstrike.sh
Nicholas Hastings b7ac61cbea Updated gdc-psyfork with current (NPOTB).
- 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").
2012-12-01 13:39:34 -05:00

37 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=source
# Game to use for DepotDownloader for Steam2 content (hldsupdatetool -game param)
DD_GAME="Counter-Strike Source"
# Absolute path to game's engine directory
ENGINE_PATH=${DD_PATH}/${DD_DIR}/css
# Game's directory name
GAME_DIR=cstrike
# SM gamedata engine name
ENGINE_NAME=orangebox_valve
# List of gamedata files to run checks on
gamedata_files=(
"sdktools.games/game.cstrike.txt"
"sdktools.games/engine.ep2valve.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 $?