forked from Znote/ZnoteAAC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
serverinfo.php
411 lines (398 loc) · 12.6 KB
/
serverinfo.php
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
<?php require_once 'engine/init.php'; include 'layout/overall/header.php';
// Calculate integer values into days, hours, minutes, seconds
function toDuration($ms) {
$duration['day'] = $ms / (24 * 60 * 60 * 1000);
if (($duration['day'] - (int)$duration['day']) > 0)
$duration['hour'] = ($duration['day'] - (int)$duration['day']) * 24;
if (isset($duration['hour'])) {
if (($duration['hour'] - (int)$duration['hour']) > 0)
$duration['minute'] = ($duration['hour'] - (int)$duration['hour']) * 60;
if (isset($duration['minute'])) {
if (($duration['minute'] - (int)$duration['minute']) > 0)
$duration['second'] = ($duration['minute'] - (int)$duration['minute']) * 60;
}
}
$tmp = array();
foreach ($duration as $type => $value) {
if ($value >= 1) {
$pluralType = ((int)$value === 1) ? $type : $type . 's';
if ($type !== 'second') $tmp[] = (int)$value . " $pluralType";
else $tmp[] = $value . " $pluralType";
}
}
return implode(', ', $tmp);
}
function toYesNo($bool) {
return ($bool) ? 'Yes' : 'No';
}
// Loading stage list
$cache = new Cache('engine/cache/stages');
if (user_logged_in() && is_admin($user_data)) {
if (isset($_GET['loadStages'])) {
echo "<p><strong>Logged in as admin, loading engine/XML/stages.xml file and updating cache.</strong></p>";
// STAGES XML TO PHP ARRAY
$stagesXML = simplexml_load_file("engine/XML/stages.xml");
if ($stagesXML !== false) {
$stagesData = array();
// Load config (stages enabled or disabled)
if ($config['ServerEngine'] == 'TFS_10')
foreach ($stagesXML->config->attributes() as $name => $value)
$stagesData["$name"] = "$value";
// Load stage levels
// Each stage XML object
if ($config['ServerEngine'] == 'TFS_10') {
foreach ($stagesXML->stage as $stage) {
$rowData = array();
// Each attribute name and values on current stage object
foreach ($stage->attributes() as $name => $value) {
$rowData["$name"] = "$value";
}
// Populate XML assoc array
$stagesData['stages'][] = $rowData;
}
} else {
// TFS 0.3/4
foreach ($stagesXML->world as $world) {
foreach ($world->stage as $stage) {
$rowData = array();
// Each attribute name and values on current stage object
foreach ($stage->attributes() as $name => $value) {
$rowData["$name"] = "$value";
}
// Populate XML assoc array
$stagesData['stages'][] = $rowData;
}
}
}
$cache->setContent($stagesData);
$cache->save();
}
} else {
$stagesData = $cache->load();
?>
<form action="">
<input type="submit" name="loadStages" value="Load stages.xml">
</form>
<?php
}
// END STAGES XML TO PHP ARRAY
} else {
$stagesData = $cache->load();
}
// End loading stage list
// Loading config.lua
$cache = new Cache('engine/cache/luaconfig');
if (user_logged_in() && is_admin($user_data)) {
if (isset($_POST['loadConfig']) && isset($_POST['configData'])) {
// Whitelist for values we are interested in
$whitelist = array( // Etc 'maxPlayers'
'worldType',
'hotkeyAimbotEnabled',
'protectionLevel',
'killsToRedSkull',
'killsToBlackSkull',
'pzLocked',
'removeChargesFromRunes',
'timeToDecreaseFrags',
'whiteSkullTime',
'stairJumpExhaustion',
'experienceByKillingPlayers',
'expFromPlayersLevelRange',
'loginProtocolPort',
'maxPlayers',
'motd',
'onePlayerOnlinePerAccount',
'deathLosePercent',
'housePriceEachSQM',
'houseRentPeriod',
'marketOfferDuration',
'premiumToCreateMarketOffer',
'maxMarketOffersAtATimePerPlayer',
'allowChangeOutfit',
'freePremium',
'kickIdlePlayerAfterMinutes',
'rateExp',
'rateSkill',
'rateLoot',
'rateMagic',
'rateSpawn',
'staminaSystem',
'experienceStages'
);
// TFS 0.3/4 compatibility, convert config value names to TFS 1.0 values
$tfs03to10 = array(
// TFS 0.3/4 TFS 1.0
'rateExperience' => 'rateExp',
'loginPort' => 'loginProtocolPort',
'rateExperienceFromPlayers' => 'experienceByKillingPlayers',
'dailyFragsToRedSkull' => 'killsToRedSkull',
'dailyFragsToBlackSkull' => 'killsToBlackSkull',
'removeRuneCharges' => 'removeChargesFromRunes',
'stairhopDelay' => 'stairJumpExhaustion',
'housePriceEachSquare' => 'housePriceEachSQM',
'idleKickTime' => 'kickIdlePlayerAfterMinutes',
);
// This will be the populated array with filtered relevant data
$luaConfig = array();
// Remove everything between first { and last }
$poststring = $_POST['configData'];
$first = strpos($poststring, '{');
if ($first !== false) {
$last = strripos($poststring, '}');
if ($last !== false) {
$sliced_string = substr($poststring, 0, $first).substr($poststring, $last+1);
$poststring = $sliced_string;
} else {
die("Lua process error: Syntax error in config.lua");
}
}
// Explode the string into string array by newline
$rawLua = explode("\n", $poststring);
// Clean up the array
$length = count($rawLua);
for ($i = 0; $i < $length; $i++) {
// We only care about lines that have the = symbol
if (strpos($rawLua[$i], '=') !== false) {
// Look for inline Lua comments and remove them
$comment = strpos($rawLua[$i], '--');
if ($comment !== false)
$rawLua[$i] = substr($rawLua[$i], 0, $comment);
$rawLua[$i] = trim($rawLua[$i]); // Remove unnecessary whitespace
// If for some reason the line is empty, ignore it. (Could be a "=" symbol inside an inline Lua comment that we sliced away)
if (!empty($rawLua[$i])) {
// Built a relevant data array
$data = explode('=', $rawLua[$i]);
// Remove unnecessary whitespace
$data[0] = trim($data[0]);
$data[1] = trim($data[1]);
// TFS 0.3/4 compatibility
if (isset($tfs03to10[$data[0]])) {
$data[0] = $tfs03to10[$data[0]];
if (isset($tfs03to10[$data[1]])) {
$data[1] = $tfs03to10[$data[1]];
}
}
if (in_array($data[0], $whitelist)) {
// Type cast: boolean
if (in_array(strtolower($data[1]), array('true', 'false'))) {
$data[1] = (strtolower($data[1]) === 'true') ? true : false;
} else {
if (strpos($data[1], '"') === false) {
if (!in_array($data[1], array_keys($luaConfig))) {
// Type cast: integer
if (strlen($data[1]) > 0) {
$data[1] = eval('return (' . $data[1] . ');');
}
} else {
// Type cast: Load value from another key
$data[1] = (isset($luaConfig[$data[1]])) ? $luaConfig[$data[1]] : null;
}
} else {
// Type cast: string, just remove the quote we earlier used to determine if it was a string.
$data[1] = str_replace('"', '', $data[1]);
}
}
// Add the results
$luaConfig[$data[0]] = $data[1];
} // End whitelisted row
} // End not empty row
} // Line has \= symbol
} // for loop
$cache->setContent($luaConfig);
$cache->save();
} else {
$luaConfig = $cache->load();
?>
<br>
<form action="" method="POST">
<label for="configData">Find your OT server folder, put the text inside config.lua into this text field:</label><br>
<textarea name="configData" placeholder="Open config.lua and copy the content into this text area."></textarea><br>
<input type="submit" name="loadConfig" value="Load config data">
</form>
<?php
}
} else {
$luaConfig = $cache->load();
}
// End loading config.lua
$stages = false;
// Render HTML
?>
<h1>Server Information</h1>
<p>Here you will find all basic information about <b><?php echo $config['site_title']; ?></b></p>
<?php if (($stagesData && isset($stagesData['enabled']) && $stagesData['enabled']) || (isset($luaConfig['experienceStages']) && $luaConfig['experienceStages'] === true)): $stages = true; ?>
<h2>Server rates</h2>
<table class="table tbl-hover">
<tbody>
<tr class="yellow">
<td>Minimum level</td>
<td>Maximum level</td>
<td>Multiplier</td>
</tr>
<?php foreach ($stagesData['stages'] as $stage): ?>
<tr>
<td><?php echo $stage['minlevel']; ?></td>
<td><?php echo (isset($stage['maxlevel'])) ? $stage['maxlevel'] : "Unlimited"; ?></td>
<td><?php echo $stage['multiplier']; ?>x</td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
<?php endif; ?>
<?php if ($luaConfig): ?>
<table class="table tbl-hover">
<tbody>
<tr class="yellow">
<?php if (!$stages): ?>
<td>Experience rate</td>
<?php endif; ?>
<td>Skills rate</td>
<td>Magic rate</td>
<td>Loot rate</td>
</tr>
<tr>
<?php if (!$stages): ?>
<td><?php echo $luaConfig['rateExp']; ?></td>
<?php endif; ?>
<td><?php echo $luaConfig['rateSkill']; ?></td>
<td><?php echo $luaConfig['rateMagic']; ?></td>
<td><?php echo $luaConfig['rateLoot']; ?></td>
</tr>
</tbody>
</table>
<h2>Miscellaneous information</h2>
<table class="table tbl-hover">
<tbody>
<tr class="yellow">
<td colspan="2">Connection information</td>
</tr>
<tr>
<td>Client</td>
<td><?php echo ($config['client'] / 100); ?></td>
</tr>
<tr>
<td>IP</td>
<td><?php echo $_SERVER['SERVER_NAME']; ?></td>
</tr>
<tr>
<td>Port</td>
<td><?php echo $luaConfig['loginProtocolPort']; ?></td>
</tr>
</tbody>
</table>
<table class="table tbl-hover">
<tbody>
<tr class="yellow">
<td colspan="2">PvP information</td>
</tr>
<tr>
<td>World type</td>
<td><?php echo $luaConfig['worldType']; ?></td>
</tr>
<tr>
<td>Hotkey aimbot</td>
<td><?php echo toYesNo($luaConfig['hotkeyAimbotEnabled']); ?></td>
</tr>
<tr>
<td>Protection level</td>
<td><?php echo $luaConfig['protectionLevel']; ?></td>
</tr>
<tr>
<td>Kills to red skull</td>
<td><?php echo $luaConfig['killsToRedSkull']; ?></td>
</tr>
<tr>
<td>Kills to black skull</td>
<td><?php echo $luaConfig['killsToBlackSkull']; ?></td>
</tr>
<tr>
<td>Remove rune charges</td>
<td><?php echo toYesNo($luaConfig['removeChargesFromRunes']); ?></td>
</tr>
<?php if (isset($luaConfig['timeToDecreaseFrags'])): ?>
<tr>
<td>Time to decrease frags</td><!-- Legacy servers might need to remove *1000 -->
<td><?php echo toDuration($luaConfig['timeToDecreaseFrags']*1000); ?></td>
</tr>
<?php endif; ?>
<tr>
<td>Experience by killing players</td>
<td><?php echo toYesNo($luaConfig['experienceByKillingPlayers']); ?></td>
</tr>
<?php if ($luaConfig['experienceByKillingPlayers']): ?>
<tr>
<td>Experience gain kill threshold:</td>
<td><?php echo $luaConfig['expFromPlayersLevelRange']; ?>% of your level</td>
</tr>
<?php endif; ?>
<tr>
<td>White skull duration</td>
<td><?php echo toDuration($luaConfig['whiteSkullTime']); ?></td>
</tr>
<tr>
<td>Protection zone lock (non lethal attack)</td>
<td><?php echo toDuration($luaConfig['pzLocked']); ?></td>
</tr>
<tr>
<td>Stair jump exhaust</td>
<td><?php echo toDuration($luaConfig['stairJumpExhaustion']); ?></td>
</tr>
</tbody>
</table>
<table class="table tbl-hover">
<tbody>
<tr class="yellow">
<td colspan="2">Other information</td>
</tr>
<tr>
<td>Free premium</td>
<td><?php echo toYesNo($luaConfig['freePremium']); ?></td>
</tr>
<tr>
<td>House rent period</td>
<td><?php echo $luaConfig['houseRentPeriod']; ?></td>
</tr>
<tr>
<td>House SQM price</td>
<td><?php echo $luaConfig['housePriceEachSQM']; ?> gp</td>
</tr>
<tr>
<td>AFK kickout</td>
<td><?php echo toDuration($luaConfig['kickIdlePlayerAfterMinutes'] * 60 * 1000); ?></td>
</tr>
<tr>
<td>One player online per account</td>
<td><?php echo toYesNo($luaConfig['onePlayerOnlinePerAccount']); ?></td>
</tr>
<tr>
<td>Max players online server limit</td>
<td><?php echo ($luaConfig['maxPlayers'] > 0) ? $luaConfig['maxPlayers'] : 'Unlimited'; ?></td>
</tr>
<tr>
<td>Allow outfit change</td>
<td><?php echo toYesNo($luaConfig['allowChangeOutfit']); ?></td>
</tr>
<?php if (isset($luaConfig['staminaSystem'])): ?>
<tr>
<td>Stamina system</td>
<td><?php echo toYesNo($luaConfig['staminaSystem']); ?></td>
</tr>
<?php endif; ?>
<?php if (isset($luaConfig['premiumToCreateMarketOffer'])): ?>
<tr>
<td>Premium to add items to market</td>
<td><?php echo toYesNo($luaConfig['premiumToCreateMarketOffer']); ?></td>
</tr>
<?php endif; ?>
<?php if (isset($luaConfig['marketOfferDuration'])): ?>
<tr>
<td>Market offer duration</td>
<td><?php echo toDuration($luaConfig['marketOfferDuration'] * 1000); ?></td>
</tr>
<?php endif; ?>
</tbody>
</table>
<?php else: ?>
<p>The server administrator has yet to import server information to this page.</p>
<?php endif;
include 'layout/overall/footer.php'; ?>