-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
152 lines (143 loc) · 7.21 KB
/
Copy pathindex.html
File metadata and controls
152 lines (143 loc) · 7.21 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ModifiedEight | Modified MCPE Alpha 0.8.1 client with new stuff</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav class="navbar navbar-inverse">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar-collapse" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html"><img src="ModifiedEight_logo.png" width="180px"></a>
</div>
<div class="collapse navbar-collapse" id="navbar-collapse">
<ul class="nav navbar-nav">
<li class="active"><a href="index.html">Home</a></li>
<li><a href="releases.html">Releases</a></li>
<li><a href="docs.html">Documentation</a></li>
<li><a href="screenshots.html">Screenshots</a></li>
<li><a href="https://discord.gg/4fv4RrTav4">Discord</a></li>
</ul>
</div>
</div>
</nav>
<div class="container">
<div class="row">
<div class="col-md-8">
<h1><b>ModifiedEight</b></h1>
<p>Modified MCPE Alpha 0.8.1 client with new stuff</p>
<a href="releases.html" class="btn btn-success">Download client</a> <a href="docs.html" class="btn btn-primary">Documentation</a>
<h3><b>Gallery</b></h3>
<div id="gallery" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#gallery" data-slide-to="0" class="active"></li>
<li data-target="#gallery" data-slide-to="1"></li>
<li data-target="#gallery" data-slide-to="2"></li>
<li data-target="#gallery" data-slide-to="3"></li>
<li data-target="#gallery" data-slide-to="4"></li>
<li data-target="#gallery" data-slide-to="5"></li>
</ol>
<div class="carousel-inner">
<div class="item active">
<img src="screenshots/uesz1m97azjh1.png" height="200px">
</div>
<div class="item">
<img src="screenshots/modifiedeight-new-additions-update-1-6-0-1-v0-lwjspghj8jjh1.webp" height="200px">
</div>
<div class="item">
<img src="screenshots/screenshot6.png" height="200px">
</div>
<div class="item">
<img src="screenshots/screenshot3.png" height="200px">
</div>
<div class="item">
<img src="images/4.png" height="200px">
</div>
<div class="item">
<img src="images/5.png" height="200px">
</div>
</div>
<a class="left carousel-control" href="#gallery" role="button" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
</a>
<a class="right carousel-control" href="#gallery" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
</a>
</div>
</div>
<div class="col-md-4">
<h3><b>Main additions</b></h3>
<h4>Content from newer versions:</h4>
<ul>
<li>Infinite and Flat world types</li>
<li>Sprinting</li>
<li>New biomes</li>
<li>Colored glass and glass panes</li>
<li>Colored beds</li>
<li>Spruce and birch doors, fences, and trapdoors</li>
<li>Missing items added to the Creative inventory</li>
</ul>
<h4>New features:</h4>
<ul>
<li>Reworked texture loading system: instead of using terrain-atlas.tga, textures are loaded similarly to Java Edition, directly from folders</li>
<li>World editing: ability to rename worlds and change game modes</li>
<li>Server editing: ability to modify server information without recreating the server</li>
<li>Dye coloring system for wood, planks, wooden stairs, slabs, and fences</li>
<li>Dye coloring system for bricks, brick stairs, and brick slabs</li>
<li>Dye coloring system for sign text</li>
<li>Ability to change chat message colors and backgrounds</li>
</ul>
<h4>...and much more.</h4>
</div>
</div>
</div>
<br><br><br>
<iframe src="footer.html" style="width: 100%; height: 40px; border: none; overflow: hidden;"></iframe>
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script>
window.addEventListener('message', function(event) {
if (event.data && event.data.type === 'resize') {
var newsFrame = document.getElementById('news-frame');
if (newsFrame) {
newsFrame.style.height = event.data.height + 'px';
}
}
}, false);
</script>
<script>
function updateServerStatus() {
fetch('https://api.mcstatus.io/v2/status/bedrock/alphastone.ddns.net:19131')
.then(response => response.json())
.then(data => {
const container = document.getElementById('server-status');
if (!data || data.error) {
container.innerHTML = '<p style="color: red;"><b>Offline</b></p>';
return;
}
const onlineStatus = data.online ? '<span style="color: green;">Online</span>' : '<span style="color: red;">Offline</span>';
const players = data.players ? `${data.players.online} / ${data.players.max}` : 'N/A';
container.innerHTML = `
<p><strong>Status:</strong> ${onlineStatus}</p>
<p><strong>Players:</strong> ${players}</p>
`;
})
.catch(err => {
document.getElementById('server-status').innerHTML = '<p style="color: red;"><b>Error loading status</b></p>';
console.error('Status load error:', err);
});
}
setInterval(updateServerStatus, 10000);
updateServerStatus();
</script>
</body>
</html>