forked from fireblizzard/agmod
-
Notifications
You must be signed in to change notification settings - Fork 2
/
rmx_map_log_remover.bat
63 lines (58 loc) · 992 Bytes
/
rmx_map_log_remover.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
:: Settings
@echo off
cd MapSources
title Scrap File Remover B)
color 0e
:: Initial start
echo This batch process removes all RMX,
echo JMX, LOG and MAP files from your SDK
echo maps folder and its subdirectories.
pause
cls
echo PLEASE NOTE: THIS ONLY REMOVES
echo FILES FROM THE MAPS FOLDER AND
echo SUBDIRECTORIES THAT ALREADY
echo CAME WITH THE AURA SERVER SDK.
pause
cls
:: Remove files from maps
echo Removing files from maps
pause
del /f *.rmx
del /f *.jmx
del /f *.map
del /f *.log
del /f *.max
echo Process complete.
pause
cls
:: Remove files from maps\credits
echo Removing files from maps\credits.
pause
cls
cd credits
del /f *.rmx
del /f *.jmx
del /f *.map
del /f *.log
del /f *.max
echo Process complete.
pause
cls
:: Remove files from maps\op4_test
cd..
echo Removing files from maps\op4_test.
pause
cls
cd op4_test
del /f *.rmx
del /f *.jmx
del /f *.map
del /f *.log
del /f *.max
echo Process complete.
pause
cls
:: Finish
echo All files have been removed.
pause