This repository was archived by the owner on May 31, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathhelp.php
More file actions
executable file
·82 lines (70 loc) · 3.19 KB
/
help.php
File metadata and controls
executable file
·82 lines (70 loc) · 3.19 KB
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
<?php
session_start();
ob_start();
if (!isset($_SESSION['logged'])) {
header('Location: index.php');
die();
}
$user = $_SESSION['user'];
include 'header/header.php';
?>
<div class="col-sm-9 col-sm-offset-3 col-md-10 col-md-offset-2 main">
<h1 style = "margin-top: 70px">Panel Help</h1>
<p class="page-header">Help for the panel.</p>
<div class='panel panel-info'>
<div class='panel-heading'>
<h3 class='panel-title'>Players</h3>
</div>
<div class='panel-body'>
<p>The players tab has a filter bar, exactly the same as a search bar, this allows you to seach for a players name or UID.</p>
</div>
</div>
<div class='panel panel-info'>
<div class='panel-heading'>
<h3 class='panel-title'>Ban Menu</h3>
</div>
<div class='panel-body'>
<p>Ban menu, this allows you to ban players who are in/out of game, with a reason and a time. The time is scaled in minutes, 60 = 1 hour. Note - When a player is banned they will remain in the server so please kick them straight after!</p>
</div>
</div>
<div class='panel panel-info'>
<div class='panel-heading'>
<h3 class='panel-title'>Kick Menu</h3>
</div>
<div class='panel-body'>
<p>Kick player, this has two options, RCON kick and Server kick. Server kick comes up with every single player who is in your database and all you need to do it hit kick, obviously they have to be on the server for it to kick them.</p>
<p>RCON kick is a little more complicated however it does have the ability to give a reason for your kick. To kick someone you need the Battleye id for the player, this is found by clicking the battleye list button. This is the number you need to use to kick people from your server - Not their UID or thier GUID.</p>
</div>
</div>
<div class='panel panel-info'>
<div class='panel-heading'>
<h3 class='panel-title'>Log Menu</h3>
</div>
<div class='panel-body'>
<p>The logs tab shows you exactly which admin has done what at the exact time. Note - The timing will depend on where your database is situated!</p>
</div>
</div>
<div class='panel panel-info'>
<div class='panel-heading'>
<h3 class='panel-title'>Thanks!</h3>
</div>
<div class='panel-body'>
<p>The rest of the panel should hopefully be pretty self exploratory, however if you need any help then let me know! jasonhall96686@yahoo.com</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="../../assets/js/vendor/jquery.min.js"><\/script>')</script>
<script src="/dist/js/bootstrap.min.js"></script>
<!-- Just to make our placeholder images work. Don't actually copy the next line! -->
<script src="../../assets/js/vendor/holder.min.js"></script>
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
<script src="../../assets/js/ie10-viewport-bug-workaround.js"></script>
</body>
</html>