-
Notifications
You must be signed in to change notification settings - Fork 2
/
.RTR_Maker.bat
81 lines (75 loc) · 1.47 KB
/
.RTR_Maker.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
@echo off
color 70
title RTR Maker for ZAMNHLMP
echo Welcome to The Phoenix Project Software RTR Maker.
echo.
echo Note that only Sabian should only run this batch
echo and he is the only person who manages retail
echo releases. Contact him in the Discord for
echo any enquiries.
pause
color 7c
cls
title Confirmation
echo PLEASE CONFIRM THAT YOU HAVE THE AUTHORITY
echo TO RUN THIS BATCH ON YOUR LOCAL COPY OF
echo THE GAME.
pause
cls
color 47
title Warning
echo CONFIRM YOU ARE RUNNING THIS IN ANOTHER COPY
echo OF THE GAME AND NOT YOUR MAIN LOCAL VERSION
pause
cls
title Proceed
color 0a
pause
cls
title Delete local config...
del /Q config.cfg
title Renaming default.cfg...
ren default.cfg config.cfg
title Deleting Git data...
rd /S /Q .git
title Deleting all demos...
del /Q *.dem
rd /S /Q addons
title Deleting cache...
rd /S /Q .vs
rd /S /Q .vscode
del /Q .DS_Store
del /Q buffer.dat
del /Q demoheader.dmf
del /Q *.log
del /Q *.rar
del /Q *.ztmp
title Deleting raw maps...
del /Q /S *.map
del /Q /S *.wa_
del /Q /S *.max
del /Q /S *.ext
del /Q /S *.prt
del /Q /S *.rmx
del /Q /S *.rmf
title Deleting logs...
del /Q agslog.txt
del /Q cached.wad
del /Q logos\remapped.bmp
del /Q models\player\remapped.bmp
del /Q voice_ban.dt
title Deleting screenshots...
del /Q *.bmp
del /Q ServerBrowser.vdf
del /Q custom.hpk
title Deleting Notepad++ backups...
del /Q /S *.bak
del /Q InGameDialogConfig.vdf
del /Q /S *.dat
title Finished
pause
cls
color 70
title PROCESS COMPLETE!!
echo ALL DONE!!
pause