-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathSphere_Core_File_Creator.bat
149 lines (134 loc) · 5.58 KB
/
Sphere_Core_File_Creator.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
@Echo On
ECHO Sphere Core File Creator >> InstallerLog.txt
ECHO Version: 3.1 >> InstallerLog.txt
ECHO Created by Khaos. >> InstallerLog.txt
ECHO Idea was derived from Sub-Zero's version. >> InstallerLog.txt
ECHO Copyrighted by Menasoft >> InstallerLog.txt
ECHO Version: 56 series >> InstallerLog.txt
ECHO. >> InstallerLog.txt
ECHO -:Sphere Core File Creator Initiated:- >> InstallerLog.txt
ECHO Checking for Missing Base Files and Folders to Run Sphere >> InstallerLog.txt
ECHO. >> InstallerLog.txt
ECHO. >> InstallerLog.txt
ECHO -:Performing a check for accounts folder:- >> InstallerLog.txt
IF NOT EXIST accounts (
MD accounts
ECHO Created the Accounts Folder. >> InstallerLog.txt
) ELSE (
ECHO The Folder Already Existed In Your Sphere Folder >> InstallerLog.txt
)
ECHO. >> InstallerLog.txt
ECHO. >> InstallerLog.txt
ECHO -:Performing a check for sphereacct.scp:- >> InstallerLog.txt
IF NOT EXIST accounts\sphereacct.scp (
ECHO [EOF] > accounts\sphereacct.scp
ECHO Created sphereacct.scp >> InstallerLog.txt
) ELSE (
ECHO The File Already Existed In Your Accounts Folder. >> InstallerLog.txt
)
ECHO. >> InstallerLog.txt
ECHO. >> InstallerLog.txt
ECHO -:Performing a check for sphereaccu.scp:- >> InstallerLog.txt
IF NOT EXIST accounts\sphereaccu.scp (
ECHO [Admin] >> accounts\sphereaccu.scp
ECHO PLEVEL=7 >> accounts\sphereaccu.scp
ECHO PRIV=048 >> accounts\sphereaccu.scp
ECHO PASSWORD=Admin >> accounts\sphereaccu.scp
ECHO [EOF] >> accounts\sphereaccu.scp
ECHO Created sphereaccu.scp >> InstallerLog.txt
ECHO **An Owner account was created as well. Login: ADMIN Password: Admin** >> InstallerLog.txt
ECHO **You should change the password as soon as possible.** >> InstallerLog.txt
) ELSE (
ECHO The File Already Existed In Your Accounts Folder. >> InstallerLog.txt
)
ECHO. >> InstallerLog.txt
ECHO. >> InstallerLog.txt
ECHO -:Performing a Check for Logs Folder:- >> InstallerLog.txt
IF NOT EXIST logs (
MD logs
ECHO Created the Logs Folder. >> InstallerLog.txt
) ELSE (
ECHO The Folder Already Existed In Your Sphere Folder. >> InstallerLog.txt
)
ECHO. >> InstallerLog.txt
ECHO. >> InstallerLog.txt
ECHO -:Performing a Check for Muls Folder:- >> InstallerLog.txt
IF NOT EXIST muls (
MD muls
ECHO Created Muls Folder. >> InstallerLog.txt
) ELSE (
ECHO The Folder Already Existed In Your Sphere Folder. >> InstallerLog.txt
)
ECHO. >> InstallerLog.txt
ECHO. >> InstallerLog.txt
ECHO -:Performing a Check for Save Folder:- >> InstallerLog.txt
IF NOT EXIST save (
MD save
ECHO Created the Save Folder >> InstallerLog.txt
) ELSE (
ECHO The Folder Already Existed In Your Sphere Folder. >> InstallerLog.txt
)
ECHO. >> InstallerLog.txt
ECHO. >> InstallerLog.txt
ECHO -:Performing a check for spherechars.scp:- >> InstallerLog.txt
IF NOT EXIST save\spherechars.scp (
ECHO [EOF] > save\spherechars.scp
ECHO Created spherechars.scp >> InstallerLog.txt
) ELSE (
ECHO The File Already Existed In Your Save Folder. >> InstallerLog.txt
)
ECHO. >> InstallerLog.txt
ECHO. >> InstallerLog.txt
ECHO -:Performing a Check for spheredata.scp:- >> InstallerLog.txt
IF NOT EXIST save\spheredata.scp (
ECHO [EOF] > save\spheredata.scp
ECHO Created spheredata.scp >> InstallerLog.txt
) ELSE (
ECHO The File Already Existed In Your Save Folder. >> InstallerLog.txt
)
ECHO. >> InstallerLog.txt
ECHO. >> InstallerLog.txt
ECHO -:Performing a check for spheremultis.scp:- >> InstallerLog.txt
IF NOT EXIST save\spheremultis.scp (
ECHO [EOF] > save\spheremultis.scp
ECHO Created spheremultis.scp >> InstallerLog.txt
) ELSE (
ECHO The File Already Existed In Your Save Folder. >> InstallerLog.txt
)
ECHO. >> InstallerLog.txt
ECHO. >> InstallerLog.txt
ECHO -:Performing a check for spherestatics.scp:- >> InstallerLog.txt
IF NOT EXIST save\spherestatics.scp (
ECHO [EOF] > save\spherestatics.scp
ECHO Created spherestatics.scp >> InstallerLog.txt
) ELSE (
ECHO The File Already Existed In Your Save Folder. >> InstallerLog.txt
)
ECHO. >> InstallerLog.txt
ECHO. >> InstallerLog.txt
ECHO -:Performing a check for spherechars.scp:- >> InstallerLog.txt
IF NOT EXIST save\sphereworld.scp (
ECHO [EOF] > save\sphereworld.scp
ECHO Created sphereworld.scp >> InstallerLog.txt
) ELSE (
ECHO The File Already Existed In Your Save Folder. >> InstallerLog.txt
)
ECHO. >> InstallerLog.txt
ECHO. >> InstallerLog.txt
ECHO -:Additional Notes:- >> InstallerLog.txt
ECHO Do not forget to add AGREE=1 in your sphere.ini >> InstallerLog.txt
ECHO This should be placed somewhere under the [SPHERE] block, but above anything to do with file locations. >> InstallerLog.txt
ECHO To new users, do not forget to set your flags for additional content beyond UO:R. >> InstallerLog.txt
ECHO This is located under the Server Mechanics section in your sphere.ini file. >> InstallerLog.txt
ECHO. >> InstallerLog.txt
ECHO Most of the information you might need is explained within the sphere.ini, revisions.txt, the manual.txt >> InstallerLog.txt
ECHO or on the www.spherecommunity.net forums. >> InstallerLog.txt
ECHO. >> InstallerLog.txt
ECHO If you need help beyond this, please post on the forums. >> InstallerLog.txt
ECHO Thank you for downloading Sphere. >> InstallerLog.txt
ECHO. >> InstallerLog.txt
ECHO WARNING: DO NOT FORGET ABOUT THIS >> InstallerLog.txt
ECHO Please do not forget, if an accounts file was set up, there will be an owner account made there. >> InstallerLog.txt
ECHO We advise in your best interest to edit the account name and the password. >> InstallerLog.txt
REM A log was created. Please refer to it for all information regarding your install. Also if account files were set up, there was an account made with a password which you will need to edit as well as the account name. Thank you again for downloading and using Sphere.
Pause