-
-
Notifications
You must be signed in to change notification settings - Fork 486
/
index.html
207 lines (206 loc) · 8.83 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
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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
---
title: Minecraft Wurst Hacked Client
description: Unleash the full potential of Minecraft with the Wurst Client - featuring over 200 cheats, hacks, commands, and utility mods. Free and open source. Download it now!
screenshots:
- https://images.wurstclient.net/_media/update/wurst_7.46_540p.webp
- https://images.wurstclient.net/_media/update/wurst_7.46pre3_540p.webp
- https://images.wurstclient.net/_media/update/wurst_7.44_540p.webp
- https://images.wurstclient.net/_media/update/wurst_7.43_540p.webp
- https://images.wurstclient.net/_media/update/wurst_7.39_540p.webp
- https://images.wurstclient.net/_media/update/wurst_7.38_540p.webp
- https://images.wurstclient.net/_media/update/wurst_7.36_540p.webp
- https://images.wurstclient.net/_media/update/wurst_7.35.2_540p.webp
- https://images.wurstclient.net/_media/update/wurst_7.29_540p.webp
---
{%- assign features = site.data.features -%}
{%- assign wiki = site.data.wikilinks -%}
{%- assign default_keybinds = site.data.default_keybinds.since_v7 -%}
<section style="background-repeat: repeat;background-size: 10.4rem;background-position: center top;background-attachment: fixed;background-image: url('https://user-images.githubusercontent.com/10100202/94212861-9b95db00-fed5-11ea-829b-2bd6cd3444d9.png');padding-top: 9.375rem;padding-bottom: 9.375rem;">
<div class="container align-center">
<h1>
<img src="https://cloud.githubusercontent.com/assets/10100202/23872350/47e8462e-082e-11e7-8ac2-07a66e4beaaa.png" width="758" height="192" alt="{{ page.title }}">
</h1>
<p>
<a class="command-button primary shadow" href="/download/" style="padding-top: 1rem;padding-bottom: 1rem;" data-analytics="Main Page: CTA Click" data-analytics-button="Download Wurst top">
<span class="icon mif-download2"></span>
Download Wurst
</a>
<br class="no-pc">
<span class="header margin20 fg-white text-shadow">or</span>
<br class="no-pc">
<a class="command-button shadow bg-green bg-hover-emerald bd-green fg-white" href="https://www.wimods.net/?utm_source=wurstclient.net&utm_content=WurstClient.net+See+Other+Projects+button" style="padding-top: 1rem;padding-bottom: 1rem;overflow: hidden;" data-analytics="Main Page: CTA Click" data-analytics-button="See Other Projects">
<span class="icon mif-rocket"></span>
See Other Projects
</a>
</p>
</div>
</section>
<section class="padding20 no-padding-left no-padding-right bg-grayLighter">
<div class="container align-center">
<p class="text-accent">
Wurst is a client-side utility mod designed to supercharge your Minecraft experience. Equipped with a vast arsenal of cheats, hacks, and other utilities, the Wurst Client ensures that you'll always have the upper edge in your Minecraft adventures.
</p>
</div>
</section>
<section class="padding20 no-padding-left no-padding-right" id="screenshots">
<div class="container">
<div class="padding10 no-padding-left no-padding-right align-center">
<h2>Screenshot Gallery</h2>
<p>Click on any image to view it in full size.</p>
</div>
<div class="padding10 no-padding-left no-padding-right">
<div class="wurst-grid">
{%- for screenshot in page.screenshots -%}
{%- assign fullsize-image = screenshot | replace: '_540p.webp', '.jpg' -%}
{%- assign filename = fullsize-image | replace: 'https://images.wurstclient.net/_media/update/', '' -%}
<article>
<a href="{{ fullsize-image }}" target="_blank" title="File: {{ filename }}" data-analytics="Screenshot Gallery: Expand Image" data-analytics-image="{{ filename }}">
<img src="{{ screenshot }}" loading="lazy" alt="{{ filename }}" width="640" height="360">
</a>
</article>
{%- endfor -%}
</div>
</div>
</div>
</section>
<section class="padding20 no-padding-left no-padding-right bg-grayLighter" id="features">
<div class="container align-center">
<h2>Features ({{ features.cheats.size | plus: features.commands.size | plus: features.other.size }})</h2>
<p>
A full list of Wurst's features can be found below.<br>
Note that not all of these features are available in all Minecraft versions.
</p>
</div>
</section>
<section class="padding20 no-padding-left no-padding-right">
<div class="container">
<div class="padding10 no-padding-left no-padding-right">
<h3>Cheats ({{ features.cheats.size }})</h3>
</div>
<div class="padding10 no-padding-left no-padding-right">
<ul class="wurst-grid list cells5" style="gap: 2px 20px">
{%- for hack in features.cheats -%}
<li>
{%- if wiki.hacks[hack] -%}
<a href="{{ wiki.hacks[hack] }}">{{ hack }}</a>
{%- else -%}
{{ hack }}
{%- endif -%}
</li>
{%- endfor -%}
</ul>
</div>
</div>
</section>
<section class="padding20 no-padding-left no-padding-right bg-grayLighter">
<div class="container">
<div class="padding10 no-padding-left no-padding-right">
<h3>Commands ({{ features.commands.size }})</h3>
</div>
<div class="padding10 no-padding-left no-padding-right">
<ul class="wurst-grid list cells5" style="gap: 2px 20px">
{%- for cmd in features.commands -%}
<li>
{%- if wiki.commands[cmd] -%}
<a href="{{ wiki.commands[cmd] }}">{{ cmd }}</a>
{%- else -%}
{{ cmd }}
{%- endif -%}
</li>
{%- endfor -%}
</ul>
</div>
</div>
</section>
<section class="padding20 no-padding-left no-padding-right">
<div class="container">
<div class="padding10 no-padding-left no-padding-right">
<h3>Other Features ({{ features.other.size }})</h3>
</div>
<div class="padding10 no-padding-left no-padding-right">
<ul class="wurst-grid list" style="gap: 2px 20px">
{%- for other in features.other -%}
<li>
{%- if wiki.other[other] -%}
<a href="{{ wiki.other[other] }}">{{ other }}</a>
{%- else -%}
{{ other }}
{%- endif -%}
</li>
{%- endfor -%}
</ul>
</div>
</div>
</section>
<section class="padding40 no-padding-left no-padding-right bg-grayLighter" id="keybinds">
<div class="container">
<div class="align-center padding10 no-padding-left no-padding-right no-padding-top">
<h2>Default Keybinds ({{ default_keybinds.binds.size }})</h2>
<p>
{{ default_keybinds.preface }}<br>
Note that Minecraft versions before 1.14 have slightly different defaults.
</p>
</div>
<ul class="wurst-grid list" style="gap: 2px 20px">
{%- for keybind in default_keybinds.binds -%}
<li><kbd>{{ keybind[0] }}</kbd> → {{ keybind[1] }}</li>
{%- endfor -%}
</ul>
</div>
</section>
<section class="padding20 no-padding-left no-padding-right" id="testimonials">
<div class="container">
<div class="padding10 no-padding-left no-padding-right">
<h2 class="align-center">Players Agree: Wurst Changes the Game</h2>
</div>
<div class="wurst-grid cells2 centered">
<figure class="no-margin">
<blockquote class="text-accent">
<p>The Wurst Hacked Client puts you in the driver's seat!</p>
</blockquote>
<figcaption>
<p>— <cite>WiZARD HAX</cite></p>
</figcaption>
</figure>
<figure class="no-margin">
<blockquote class="text-accent">
<p>The Wurst Client is one of, if not the best Minecraft hack.</p>
</blockquote>
<figcaption>
<p>— <cite>mchacks.net</cite></p>
</figcaption>
</figure>
<figure class="no-margin">
<blockquote class="text-accent">
<p>For those who relish in survival mode, this client is a godsend!</p>
</blockquote>
<figcaption>
<p>— <cite>thebluecrusader</cite></p>
</figcaption>
</figure>
</div>
<div class="align-center">
<p>
<a class="github-button" href="https://github.com/Wurst-Imperium/Wurst7" data-icon="octicon-star" data-size="large" data-show-count="true" aria-label="Star Wurst-Imperium/Wurst7 on GitHub">Star</a>
<a class="github-button" href="https://github.com/Wurst-Imperium/Wurst7/subscription" data-icon="octicon-eye" data-size="large" data-show-count="true" aria-label="Watch Wurst-Imperium/Wurst7 on GitHub">Watch</a>
<a class="github-button" href="https://github.com/Wurst-Imperium/Wurst7/fork" data-icon="octicon-repo-forked" data-size="large" data-show-count="true" aria-label="Fork Wurst-Imperium/Wurst7 on GitHub">Fork</a>
</p>
<img src="https://api.star-history.com/svg?repos=Wurst-Imperium/Wurst7&type=Date" alt="Star History of Wurst-Imperium/Wurst7" loading="lazy" width="800" height="553">
</div>
</div>
</section>
<section class="padding40 no-padding-left no-padding-right bg-grayLighter">
<div class="container align-center">
<h2>So what are you waiting for?</h2>
<p class="text-accent">
Download the Wurst Client today and enhance your gameplay like never before!
</p>
<p>
<a class="command-button primary shadow" href="/download/" style="padding-top: 1rem;padding-bottom: 1rem;" data-analytics="Main Page: CTA Click" data-analytics-button="Download Wurst bottom">
<span class="icon mif-download2"></span>
Download Wurst
</a>
</p>
</div>
</section>
<script async defer src="https://buttons.github.io/buttons.js"></script>