-
Notifications
You must be signed in to change notification settings - Fork 6
/
server.jsp
419 lines (381 loc) · 15.1 KB
/
server.jsp
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
<%@page import="protocol.*"%>
<%@include file="WEB-INF/.pwadminconf.jsp"%>
<%
boolean allowed = false;
if(request.getSession().getAttribute("ssid") == null)
{
out.println("<p align=\"right\"><font color=\"#ee0000\"><b>Login for Server configuration...</b></font></p>");
}
else
{
allowed = true;
}
%>
<table width="800" cellpadding="0" cellspacing="0" border="0">
<tr>
<td colspan="2">
<br>
</td>
</tr>
<tr>
<td align="center" valign="top">
<table cellpadding="2" cellspacing="0" style="border: 1px solid #cccccc;">
<tr>
<th colspan="2" align="center" style="padding: 5;">
<font color="#ffffff"><b><%out.println(pw_server_name);%></b></font>
</th>
</tr>
<tr>
<td colspan="2" align="left" valign="middle" style="border-bottom: 1px solid #cccccc;">
<iframe src="status.jsp" width="120" height="32" scrolling="no" frameborder="no" style="border: 0;"></iframe>
</td>
</tr>
<tr>
<td>
EXP Rate:
</td>
<td>
<%out.println(pw_server_exp);%>
</td>
</tr>
<tr>
<td>
SP Rate:
</td>
<td>
<%out.println(pw_server_sp);%>
</td>
</tr>
<tr>
<td>
Drop Rate:
</td>
<td>
<%out.println(pw_server_drop);%>
</td>
</tr>
<tr>
<td>
Coins Rate:
</td>
<td>
<%out.println(pw_server_coins);%>
</td>
</tr>
<tr>
<td colspan="2" style="border-top: 1px solid #cccccc;">
<%out.println(pw_server_description);%>
</td>
</tr>
</table>
</td>
<td align="center" valign="top">
<%
if(allowed)
{
String message = new String("<br>");
// ### Apply Changes ###
if(request.getParameter("process") != null)
{
if(request.getParameter("process").compareTo("save") == 0)
{
message = "<font color=\"#00cc00\"><b>Saved All Values<b></font>";
try
{
int max = Integer.parseInt(request.getParameter("users_max"));
if(DeliveryDB.SetMaxOnlineNum(max, max))
{
//message += "<font color=\"#00cc00\"><b>Saved Maximum User Number<b></font><br>";
}
else
{
//message += "<font color=\"#ee0000\"><b>Saving Maximum User Number Failed</b></font><br>";
message = "<font color=\"#ee0000\"><b>Saving of one or more Values Failed<b></font>";
}
}
catch(Exception e)
{
//message += "<font color=\"#ee0000\"><b>Saving Maximum User Number Failed</b></font><br>";
message = "<font color=\"#ee0000\"><b>Saving of one or more Values Failed<b></font>";
}
try
{
int lambda_value = Integer.parseInt(request.getParameter("lambda_value"));
if(DeliveryDB.GMSetLambda(lambda_value))
{
//message += "<font color=\"#00cc00\"><b>Saved Lambda Value<b></font><br>";
}
else
{
//message += "<font color=\"#ee0000\"><b>Saving Lambda Value Failed</b></font><br>";
message = "<font color=\"#ee0000\"><b>Saving of one or more Values Failed<b></font>";
}
}
catch(Exception e)
{
//message += "<font color=\"#ee0000\"><b>Saving Lambda Value Failed</b></font><br>";
message = "<font color=\"#ee0000\"><b>Saving of one or more Values Failed<b></font>";
}
try
{
String dblexp_on = request.getParameter("dblexp_on");
if(dblexp_on == null){dblexp_on = "false";}
if(DeliveryDB.GMSetDoubleExp(dblexp_on.equals("true")))
{
//message += "<font color=\"#00cc00\"><b>Saved Double Experience Points</b></font><br>";
}
else
{
//message += "<font color=\"#ee0000\"><b>Saving Double Experience Points Failed</b></font><br>";
message = "<font color=\"#ee0000\"><b>Saving of one or more Values Failed<b></font>";
}
}
catch(Exception e)
{
//message += "<font color=\"#ee0000\"><b>Saving Double Experience Points Failed</b></font><br>";
message = "<font color=\"#ee0000\"><b>Saving of one or more Values Failed<b></font>";
}
try
{
String dblsp_on = request.getParameter("dblsp_on");
if(dblsp_on == null){dblsp_on = "false";}
if(DeliveryDB.GMSetDoubleSP(dblsp_on.equals("true")))
{
//message += "<font color=\"#00cc00\"><b>Saved Double Skill Points</b></font><br>";
}
else
{
//message += "<font color=\"#ee0000\"><b>Saving Double Skill Points Failed</b></font><br>";
message = "<font color=\"#ee0000\"><b>Saving of one or more Values Failed<b></font>";
}
}
catch(Exception e)
{
//message += "<font color=\"#ee0000\"><b>Saving Double Skill Points Failed</b></font><br>";
message = "<font color=\"#ee0000\"><b>Saving of one or more Values Failed<b></font>";
}
try
{
String dbldrop_on = request.getParameter("dbldrop_on");
if(dbldrop_on == null){dbldrop_on = "false";}
if(DeliveryDB.GMSetDoubleObject(dbldrop_on.equals("true")))
{
//message += "<font color=\"#00cc00\"><b>Saved Double Droprate</b></font><br>";
}
else
{
//message += "<font color=\"#ee0000\"><b>Saving Double Droprate Failed</b></font><br>";
message = "<font color=\"#ee0000\"><b>Saving of one or more Values Failed<b></font>";
}
}
catch(Exception e)
{
//message += "<font color=\"#ee0000\"><b>Saving Double Droprate Failed</b></font><br>";
message = "<font color=\"#ee0000\"><b>Saving of one or more Values Failed<b></font>";
}
try
{
String dblcoin_on = request.getParameter("dblcoin_on");
if(dblcoin_on == null){dblcoin_on = "false";}
if(DeliveryDB.GMSetDoubleMoney(dblcoin_on.equals("true")))
{
//message += "<font color=\"#00cc00\"><b>Saved Double Coins</b></font><br>";
}
else
{
//message += "<font color=\"#ee0000\"><b>Saving Double Coins Failed</b></font><br>";
message = "<font color=\"#ee0000\"><b>Saving of one or more Values Failed<b></font>";
}
}
catch(Exception e)
{
//message += "<font color=\"#ee0000\"><b>Saving Double Coins Failed</b></font><br>";
message = "<font color=\"#ee0000\"><b>Saving of one or more Values Failed<b></font>";
}
try
{
String nomail_on = request.getParameter("nomail_on");
if(nomail_on == null){nomail_on = "false";}
if(DeliveryDB.GMSetNoMail(nomail_on.equals("true")))
{
//message += "<font color=\"#00cc00\"><b>Saved No-Mail Mode</b></font><br>";
}
else
{
//message += "<font color=\"#ee0000\"><b>Saving No-Mail Mode Failed</b></font><br>";
message = "<font color=\"#ee0000\"><b>Saving of one or more Values Failed<b></font>";
}
}
catch(Exception e)
{
//message += "<font color=\"#ee0000\"><b>Saving No-Mail Mode Failed</b></font><br>";
message = "<font color=\"#ee0000\"><b>Saving of one or more Values Failed<b></font>";
}
try
{
String nofaction_on = request.getParameter("nofaction_on");
if(nofaction_on == null){nofaction_on = "false";}
if(DeliveryDB.GMSetNoFaction(nofaction_on.equals("true")))
{
//message += "<font color=\"#00cc00\"><b>Saved No-Faction Mode</b></font><br>";
}
else
{
//message += "<font color=\"#ee0000\"><b>Saving No-Faction Mode Failed</b></font><br>";
message = "<font color=\"#ee0000\"><b>Saving of one or more Values Failed<b></font>";
}
}
catch(Exception e)
{
//message += "<font color=\"#ee0000\"><b>Saving No-Faction Mode Failed</b></font><br>";
message = "<font color=\"#ee0000\"><b>Saving of one or more Values Failed<b></font>";
}
try
{
String notrade_on = request.getParameter("notrade_on");
if(notrade_on == null){notrade_on = "false";}
if(DeliveryDB.GMSetNoTrade(notrade_on.equals("true")))
{
//message += "<font color=\"#00cc00\"><b>Saved No-Trade Mode</b></font><br>";
}
else
{
//message += "<font color=\"#ee0000\"><b>Saving No-Trade Mode Failed</b></font><br>";
message = "<font color=\"#ee0000\"><b>Saving of one or more Values Failed<b></font>";
}
}
catch(Exception e)
{
//message += "<font color=\"#ee0000\"><b>Saving No-Trade Mode Failed</b></font><br>";
message = "<font color=\"#ee0000\"><b>Saving of one or more Values Failed<b></font>";
}
try
{
String noshop_on = request.getParameter("noshop_on");
if(noshop_on == null){noshop_on = "false";}
if(DeliveryDB.GMSetNoSellPoint(noshop_on.equals("true")))
{
//message += "<font color=\"#00cc00\"><b>Saved No-PlayerShop Mode</b></font><br>";
}
else
{
//message += "<font color=\"#ee0000\"><b>Saving No-PlayerShop Mode Failed</b></font><br>";
message = "<font color=\"#ee0000\"><b>Saving of one or more Values Failed<b></font>";
}
}
catch(Exception e)
{
//message += "<font color=\"#ee0000\"><b>Saving No-PlayerShop Mode Failed</b></font><br>";
message = "<font color=\"#ee0000\"><b>Saving of one or more Values Failed<b></font>";
}
try
{
String noauction_on = request.getParameter("noauction_on");
if(noauction_on == null){noauction_on = "false";}
if(DeliveryDB.GMSetNoAuction(noauction_on.equals("true")))
{
//message += "<font color=\"#00cc00\"><b>Saved No-Auction Mode</b></font><br>";
}
else
{
//message += "<font color=\"#ee0000\"><b>Saving No-Auction Mode Failed</b></font><br>";
message = "<font color=\"#ee0000\"><b>Saving of one or more Values Failed<b></font>";
}
}
catch(Exception e)
{
//message += "<font color=\"#ee0000\"><b>Saving No-Auction Mode Failed</b></font><br>";
message = "<font color=\"#ee0000\"><b>Saving of one or more Values Failed<b></font>";
}
}
}
// ### END Apply Changes ###
// ### Get Current Values ###
String users_max = new String("");
String users_vmax = new String("");
String users_online = new String("");
{
Integer[] user = new Integer[3];
DeliveryDB.GetMaxOnlineNum(user);
if(user[0] == null){user[0] = new Integer(-1);}
if(user[1] == null){user[1] = new Integer(-1);}
if(user[2] == null){user[2] = new Integer(-1);}
users_max = user[0].toString();
users_vmax = user[1].toString();
users_online = user[2].toString();
}
String lambda = new String("");
{
lambda = Integer.toString(DeliveryDB.GMGetLambda());
}
String double_exp = new String("");
{
byte status = DeliveryDB.GMGetDoubleExp();
if(status == (byte)1){double_exp = "checked=\"checked\"";}
}
String double_sp = new String("");
{
byte status = DeliveryDB.GMGetDoubleSP();
if(status == (byte)1){double_sp = "checked=\"checked\"";}
}
String double_drop = new String("");
{
byte status = DeliveryDB.GMGetDoubleObject();
if(status == (byte)1){double_drop = "checked=\"checked\"";}
}
String double_coin = new String("");
{
byte status = DeliveryDB.GMGetDoubleMoney();
if(status == (byte)1){double_coin = "checked=\"checked\"";}
}
String mail = new String("");
{
byte status = DeliveryDB.GMGetNoMail();
if(status == (byte)1){mail = "checked=\"checked\"";}
}
String faction = new String("");
{
byte status = DeliveryDB.GMGetNoFaction();
if(status == (byte)1){faction = "checked=\"checked\"";}
}
String trade = new String("");
{
byte status = DeliveryDB.GMGetNoTrade();
if(status == (byte)1){trade = "checked=\"checked\"";}
}
String shop = new String("");
{
byte status = DeliveryDB.GMGetNoSellPoint();
if(status == (byte)1){shop = "checked=\"checked\"";}
}
String auction = new String("");
{
byte status = DeliveryDB.GMGetNoAuction();
if(status == (byte)1){auction = "checked=\"checked\"";}
}
// ### END Get Current Values ###
// ### Show Form ###
out.println("<form action=\"index.jsp?page=server&process=save\" method=\"post\" style=\"margin: 0px;\">");
out.println("<table cellpadding=\"2\" cellspacing=\"0\" style=\"border: 1px solid #cccccc;\">");
out.println("<tr><th colspan=\"3\" align=\"center\" style=\"padding: 5px;\">SERVER CONFIGURATION</th>");
out.println("<tr bgcolor=\"#f0f0f0\"><td colspan=\"3\" align=\"center\">" + message + "</td>");
out.println("<tr><td style=\"border-top: 1px solid #cccccc;\">Max. Online Users / Virtual Max. Online Users</td><td align=\"center\" style=\"border-top: 1px solid #cccccc;\"><input name=\"users_max\" type=\"text\" value=\"" + users_max + "\" style=\"width: 40px; text-align: center;\"></td></tr>");
out.println("<tr><td style=\"border-top: 1px solid #cccccc;\">Set Lambda Value</td><td align=\"center\" style=\"border-top: 1px solid #cccccc;\"><input name=\"lambda_value\" type=\"text\" value=\"" + lambda + "\" style=\"width: 40px; text-align: center;\"></td></tr>");
out.println("<tr><td style=\"border-top: 1px solid #cccccc;\">Turn Double Experience Points On / Off</td><td align=\"center\" style=\"border-top: 1px solid #cccccc;\"><input name=\"dblexp_on\" type=\"checkbox\" value=\"true\" " + double_exp + "></td></tr>");
out.println("<tr><td style=\"border-top: 1px solid #cccccc;\">Turn Double Skill Points On / Off</td><td align=\"center\" style=\"border-top: 1px solid #cccccc;\"><input name=\"dblsp_on\" type=\"checkbox\" value=\"true\" " + double_sp + "></td></tr>");
out.println("<tr><td style=\"border-top: 1px solid #cccccc;\">Turn Double Droprate On / Off</td><td align=\"center\" style=\"border-top: 1px solid #cccccc;\"><input name=\"dbldrop_on\" type=\"checkbox\" value=\"true\" " + double_drop + "></td></tr>");
out.println("<tr><td style=\"border-top: 1px solid #cccccc;\">Turn Double Coins On / Off</td><td align=\"center\" style=\"border-top: 1px solid #cccccc;\"><input name=\"dblcoin_on\" type=\"checkbox\" value=\"true\" " + double_coin + "></td></tr>");
out.println("<tr><td style=\"border-top: 1px solid #cccccc;\">Turn No-Mail Mode On / Off</td><td align=\"center\" style=\"border-top: 1px solid #cccccc;\"><input name=\"nomail_on\" type=\"checkbox\" value=\"true\" " + mail + "></td></tr>");
out.println("<tr><td style=\"border-top: 1px solid #cccccc;\">Turn No-Faction Mode On / Off</td><td align=\"center\" style=\"border-top: 1px solid #cccccc;\"><input name=\"nofaction_on\" type=\"checkbox\" value=\"true\" " + faction + "></td></tr>");
out.println("<tr><td style=\"border-top: 1px solid #cccccc;\">Turn No-Trade Mode On / Off</td><td align=\"center\" style=\"border-top: 1px solid #cccccc;\"><input name=\"notrade_on\" type=\"checkbox\" value=\"true\" " + trade + "></td></tr>");
out.println("<tr><td style=\"border-top: 1px solid #cccccc;\">Turn No-PlayerShop Mode On / Off</td><td align=\"center\" style=\"border-top: 1px solid #cccccc;\"><input name=\"noshop_on\" type=\"checkbox\" value=\"true\" " + shop + "></td></tr>");
out.println("<tr><td style=\"border-top: 1px solid #cccccc;\">Turn No-Auction Mode On / Off</td><td align=\"center\" style=\"border-top: 1px solid #cccccc;\"><input name=\"noauction_on\" type=\"checkbox\" value=\"true\" " + auction + "></td></tr>");
out.println("<tr><td colspan=\"2\" align=\"center\" style=\"border-top: 1px solid #cccccc;\"><input type=\"image\" src=\"include/btn_save.jpg\" style=\"border: 0px;\"></td></tr>");
out.println("</table>");
out.println("</form>");
// ### END Show Form ###
}
%>
</td>
</tr>
</table>