-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
93 lines (87 loc) · 2.85 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>No Limit Minecarts - Minecraft Mod</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #1a0033;
color: #e0e0e0;
line-height: 1.6;
margin: 0;
padding: 20px;
}
.container {
max-width: 800px;
margin: 0 auto;
}
h1 {
color: #9d4edd;
text-align: center;
}
img {
display: block;
margin: 20px auto;
max-width: 128px;
}
h2 {
color: #c77dff;
border-bottom: 1px solid #c77dff;
padding-bottom: 5px;
}
a {
color: #e0aaff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.section {
background-color: #240046;
padding: 15px;
margin-bottom: 20px;
border-radius: 5px;
}
code {
background-color: #3c096c;
padding: 2px 4px;
border-radius: 3px;
}
</style>
</head>
<body>
<div class="container">
<img src="/assets/nlm-icon-128-r.png" alt="No Limit Minecarts Icon">
<h1>No Limit Minecarts</h1>
<div class="section">
<p>24w34a Fabric Mod that removes limits for gamerule <code>maxMinecartSpeed</code></p>
</div>
<div class="section">
<h2>Downloads</h2>
<p>Download from <a href="https://github.com/nosqd/no-limit-minecarts/releases" target="_blank">github releases</a></p>
<p>Download from <a href="https://modrinth.com/mod/no-limit-minecarts" target="_blank">modrinth</a></p>
</div>
<div class="section">
<h2>Usage</h2>
<h3>Server</h3>
<p>Install mod on your server/host and set gamerule maxMinecartSpeed to anything you want (in blocks per second).</p>
<h3>Client</h3>
<p>Install mod on your client (fabric api is not necessary), and you can see your vehicle speed in F3 debug HUD.</p>
</div>
<div class="section">
<h2>API</h2>
<p>In version 1.1.0, I added an API for getting player vehicle speed in blocks per second, you can see it in <a href="src/main/java/ru/nosqd/nlm/api/NoLimitMinecartsApi.java">NoLimitMinecartsApi</a></p>
</div>
<div class="section">
<h2>Why are minecarts slow when speed is max?</h2>
<p>I've noticed that speed of minecart is kind of limited when there are no passengers.</p>
</div>
<div class="section">
<h2>Contributing</h2>
<p>Feel free to contribute, anything, like anything this project started tonight to just have fun with the new update.</p>
</div>
</div>
</body>
</html>