Skip to content

Commit

Permalink
added basic templating
Browse files Browse the repository at this point in the history
  • Loading branch information
Southclaws committed Jun 4, 2018
1 parent 684ffeb commit c46ab2e
Show file tree
Hide file tree
Showing 4 changed files with 288 additions and 282 deletions.
106 changes: 54 additions & 52 deletions .gitignore
@@ -1,52 +1,54 @@
# SA:MP server related files
*.dll
*.exe
*.amx
*.RDP
server_log.txt
server.cfg
start.bat
crashinfo.txt
announce
plugins/
samp-npc
samp03svr
logs/

# My private SS resources
private/
gamemodes/sss/extensions/
gamemodes/ScavengeSurvive.tar.gz

# Sublime stuff
*.sublime-workspace

# stuff no one else needs
*.lnk
pyss/data/*.jpg
build-config.json
dependencies/
gamemodes/vendor/
gamemodes/include/

# Python stuff
__pycache__/
*.py[cod]
*$py.class
*.pyc

misc/config.json
*.mmd
misc/logmarkov.cfg

scriptfiles/geoip.db
scriptfiles/geoip_city.db
scriptfiles/SAfull.hmap
scriptfiles/SAfull.jpg
scriptfiles/Maps/
scriptfiles/txmap/
scriptfiles/logs/
scriptfiles/data/
scriptfiles/carmour/
scriptfiles/.gitignore
scriptfiles/.git/
# SA:MP server related files
*.dll
*.exe
*.amx
*.RDP
server_log.txt
server.cfg
start.bat
crashinfo.txt
announce
plugins/
samp-npc
samp03svr
logs/

# My private SS resources
private/
gamemodes/sss/extensions/
gamemodes/ScavengeSurvive.tar.gz

# Sublime stuff
*.sublime-workspace

# stuff no one else needs
*.lnk
pyss/data/*.jpg
build-config.json
dependencies/
gamemodes/vendor/
gamemodes/include/

# Python stuff
__pycache__/
*.py[cod]
*$py.class
*.pyc

misc/config.json
*.mmd
misc/logmarkov.cfg

scriptfiles/geoip.db
scriptfiles/geoip_city.db
scriptfiles/SAfull.hmap
scriptfiles/SAfull.jpg
scriptfiles/Maps/
scriptfiles/txmap/
scriptfiles/logs/
scriptfiles/data/
scriptfiles/carmour/
scriptfiles/.gitignore
scriptfiles/.git/

template/
2 changes: 1 addition & 1 deletion gamemodes/ScavengeSurvive.pwn
Expand Up @@ -185,7 +185,7 @@ public OnGameModeInit()
new stock
gBuildNumber = {{ .buildNumber }},
gBuildNumber = {{ file.Read "./BUILD_NUMBER" }},
bool: gServerInitialising = true,
gServerInitialiseTick,
bool: gServerRestarting = false,
Expand Down

0 comments on commit c46ab2e

Please sign in to comment.