* not code stuff * other things * global vars, defines, helpers * onclick hud stuff, orphans, world.dm * controllers and datums * game folder * everything not client/mobs in modules * client folder * stage 1 mob stuff * simple animal things * silicons * carbon things * ayylmaos and monkeys * hyoomahn * icons n shit * sprite fixes * compile fixes * some fixes I cherrypicked. * qdel fixes * forgot brain refractors
20 lines
610 B
Batchfile
20 lines
610 B
Batchfile
@echo off
|
|
call config.bat
|
|
call bin/findbyond.bat
|
|
set DME_FOLDER=gamefolder\
|
|
if defined AB set DME_FOLDER=gamecode\%AB%\
|
|
|
|
set DME_LOCATION=%DME_FOLDER%%PROJECTNAME%.dme
|
|
set MDME_LOCATION=%DME_FOLDER%%PROJECTNAME%.mdme
|
|
|
|
:BUILD
|
|
echo #define SERVERTOOLS 1 >>%MDME_LOCATION%
|
|
type %DME_LOCATION% >>%MDME_LOCATION%
|
|
|
|
dm %MDME_LOCATION%
|
|
set DM_EXIT=%ERRORLEVEL%
|
|
@del %DME_FOLDER%%PROJECTNAME%.dmb >nul 2>nul
|
|
@del %DME_FOLDER%%PROJECTNAME%.rsc >nul 2>nul
|
|
@move %DME_FOLDER%%PROJECTNAME%.mdme.dmb %DME_FOLDER%%PROJECTNAME%.dmb >nul 2>nul
|
|
@move %DME_FOLDER%%PROJECTNAME%.mdme.rsc %DME_FOLDER%%PROJECTNAME%.rsc >nul 2>nul
|