-
Notifications
You must be signed in to change notification settings - Fork 64
/
servers.html
86 lines (79 loc) · 2.27 KB
/
servers.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
---
title: Server list
description: A list of public servers, as shown inside Luanti
layout: default
redirect_from:
- /servers.html
---
<script defer>
var master = {
root: 'https://servers.minetest.net/',
no_avgtop: true,
no_ping: true,
no_uptime: true,
limit: 20,
clients_min: 1,
};
</script>
<script defer src="https://servers.minetest.net/list.js"></script>
<section class="section">
<div class="container">
<div class="content">
<h1>Servers</h1>
<p class="has-text-strong">
The server list is also available at <a href="https://servers.minetest.net/" rel="nofollow">servers.minetest.net</a>.
</p>
<!-- Loaded by the script at the top of this page -->
<div id="server_list"></div>
<noscript>
<p class="has-text-centered has-text-weight-semibold">
JavaScript is required to view the server list.
</p>
</noscript>
<hr>
<div class="columns is-desktop">
<div class="column">
<h2 id="flags">Flags</h2>
<table class="table table-striped">
<thead>
<tr>
<th class="has-text-right">Flag</th>
<th>Explanation</th>
</tr>
</thead>
<tbody>
<tr>
<td class="has-text-right">Pwd</td>
<td>Players need to set a password at first connect</td>
</tr>
<tr>
<td class="has-text-right">Dmg</td>
<td>Damage enabled</td>
</tr>
<tr>
<td class="has-text-right">PvP</td>
<td>Players can damage other players</td>
</tr>
<tr>
<td class="has-text-right">Cre</td>
<td>Creative mode</td>
</tr>
</tbody>
</table>
</div>
<div class="column">
<h2 id="announcing_servers">Announcing Servers</h2>
<p>
Set this in your server configuration:
</p>
<pre class="code">
server_announce = true
server_name = My server
server_description = A server that I made.
server_url = <URL to server homepage or forum topic>
</pre>
</div>
</div>
</div>
</div>
</section>