mirror of
https://github.com/alliedmodders/amxmodx.git
synced 2024-12-26 06:45:37 +03:00
12 lines
226 B
Batchfile
12 lines
226 B
Batchfile
|
@echo off
|
||
|
|
||
|
if not exist compiled mkdir compiled
|
||
|
if exist temp.txt del temp.txt
|
||
|
for %%i in (*.sma) do sc %%i -ocompiled\%%i >> temp.txt
|
||
|
copy compiled\*.sma compiled\*.amx
|
||
|
del compiled\*.sma
|
||
|
cls
|
||
|
type temp.txt
|
||
|
del temp.txt
|
||
|
|
||
|
pause
|