2004-02-15 00:34:24 +00:00
|
|
|
@echo off
|
2004-02-11 19:32:59 +00:00
|
|
|
rem AMX Mod X
|
|
|
|
rem
|
2004-03-07 14:38:39 +00:00
|
|
|
rem by the AMX Mod X Development Team
|
|
|
|
rem originally developed by OLO
|
|
|
|
rem
|
|
|
|
rem This file is part of AMX Mod X.
|
|
|
|
|
2004-02-11 19:32:59 +00:00
|
|
|
|
2004-01-31 20:56:22 +00:00
|
|
|
if not exist compiled mkdir compiled
|
|
|
|
if exist temp.txt del temp.txt
|
2004-03-07 14:38:39 +00:00
|
|
|
for %%i in (*.sma) do sc %%i -ocompiled\%%i >> temp.txt
|
2004-01-31 20:56:22 +00:00
|
|
|
copy compiled\*.sma compiled\*.amx
|
|
|
|
del compiled\*.sma
|
|
|
|
cls
|
|
|
|
type temp.txt
|
|
|
|
del temp.txt
|
|
|
|
|
|
|
|
pause
|