-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
115 lines (110 loc) · 3.2 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en-GB">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Player vs. Player — Project Enyo</title>
<link rel="icon" type="image/x-icon" href="favicon.png">
<link rel="stylesheet" href="style.css">
<script src="script.js" async></script>
</head>
<body>
<header>
<div id="center">
<h1>Player vs. Player</h1>
<nav>
<p>
<a href="/">Home</a>
<a href="/pvp" class="current">PVP</a>
<a href="/smp">SMP</a>
<a href="/dvz">DVZ</a>
<a href="/rules">Rules</a>
</p>
</nav>
</div>
</header>
<main>
<nav>
<p>
<a href="/pvp" class="current">Start</a>
<a href="https://maps.projectenyo.eu">Map Index</a>
</p>
</nav>
<img class="banner" src="img/pvp-banner.png" alt="Banner">
<section>
<h2>Server Information</h2>
<p>
The PVP server is hosting pickup games on classic pvp maps.
Anyone can join at any time and play against other people in objective based matches.
The server uses the <a href="https://pgm.dev">PGM</a> plugin to manage this automatically.
</p>
<table>
<tbody>
<tr>
<td><b>Address</b></td>
<td><code>pvp.projectenyo.eu</code></td>
</tr>
<tr>
<td><b>Status</b></td>
<td id="online-status"> - </td>
</tr>
<tr>
<td><b>Players online</b></td>
<td id="players-online"> - </td>
</tr>
<tr>
<td><b>Current map</b></td>
<td id="current-map"> - </td>
</tr>
</tbody>
</table>
</section>
<section>
<h2>Play</h2>
<p>
Once you join the server, you can watch the game as an observer.
If teams are not full, you can type <code>/join</code> to play.
</p>
<p>
There are two map pools available, <strong>alpha</strong> and <strong>blitz</strong>.
The <em>alpha</em> pool has the classics, while the <em>blitz</em> pool features maps with limited lives, often just one.
To view the map pool list, type <code>/pools</code> and <code>/pool --pool <name></code> to see the list of maps in that pool.
</p>
</section>
<section>
<h2>Commands</h2>
<dl>
<dt><code>/join</code></dt>
<dd>Join the game.</dd>
<dt><code>!message</code></dt>
<dd>Shout to the other team.</dd>
<dt><code>/votekick</code></dt>
<dd>Start a votekick.</dd>
<dt><code>/motd</code></dt>
<dd>Show the message of today.</dd>
<dt><code>/rules</code></dt>
<dd>View the rules.</dd>
<dt><span class="imply">>implying</span></dt>
<dd>Imply.</dd>
</dl>
</section>
<section>
<h2>Vote</h2>
<p>
You can vote for the server on <a href="https://www.planetminecraft.com/server/project-enyo/vote/">Planet Minecraft</a> or <a href="https://findmcserver.com/server/project-enyo-pvp?vote=true">FindMCServer</a> to help the server get more recognition.
</p>
</section>
<section>
<h2>Rules</h2>
<p>
The rules can be found <a href="/rules.html">here</a>.
</p>
</section>
</main>
<footer>
<p>
NOT AN OFFICIAL MINECRAFT PRODUCT. NOT APPROVED BY OR ASSOCIATED WITH MOJANG.
</p>
</footer>
</body>
</html>