-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathminecraft.html
58 lines (49 loc) · 2.59 KB
/
minecraft.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- include scripts.js and only run when ready -->
<script src="../scripts.js" defer></script>
<link rel='stylesheet' type='text/css' href='styles.css'>
<title>Programming Club: Home</title>
</head>
<body>
<div id="nav"></div>
<!-- Center everything -->
<div class="center">
<h1>We have a minecraft server!</h1>
<p>The below info is now out of date as we have moved back to java, join our Discord server for more info on the new server.</p>
<h2> How to join: </h2>
<!-- A step by step list -->
<ol id="minecraft-list" style="max-width: 65ch; line-height: 1.5rem;">
<li>Download Minecraft (Bedrock edition) on your
<a href="https://www.microsoft.com/en-au/p/minecraft-for-windows-10/9nblggh2jhxj?activetab=pivot:overviewtab" target=”_blank”>Windows 10</a>,
<a href="https://play.google.com/store/apps/details?id=com.mojang.minecraftpe&hl=en_AU&gl=US" target=”_blank”>Android</a>,
<a href="https://apps.apple.com/au/app/minecraft/id479516143" target=”_blank”>iPhone/iPad</a>,
Xbox, PlayStation, Switch, or any other device that can run Minecraft Bedrock edition
</li>
<li>Join the whitelist</li>
<ul>
<li>You will need to be a member or <a href="https://campus.hellorubric.com/?s=6055" target=”_blank”>sign-up as one</a></li>
<li><a href="https://mcProgClub-event.getqpay.com" target=”_blank”>Get a ticket</a> to agree to the servers rules join the servers whitelist</li>
<li>Contact the committee through <a href="https://discord.gg/UgBWyaaeus" target=”_blank”>our Discord server</a> to get them to update the whitelist</li>
</ul>
<li>Connect to the server</li>
<ul>
<li>Open minecraft and click play -> servers </li>
<li>Scroll down the list of servers and click add server</li>
<li>Enter these values</li>
<ul>
<li>Server Name: <b>Programming Club</b></li>
<li>Server Address: <b>mc.programmingclub.com.au</b></li>
<li>Port: <b>19136</b></li>
</ul>
</ul>
<li>Click "Save" and then "Join Server"</li>
<li>Enjoy!</li>
</ol>
</div>
</body>
</html>