-
Notifications
You must be signed in to change notification settings - Fork 27
/
index.html
176 lines (176 loc) · 6.28 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
---
title: Minecraft Wolfram Hacked Client
description: Wolfram is a Minecraft Hack Client packed with over 120 cheats, hacks, and utility mods that the game normally wouldn't allow, including Fly, X-Ray vision and ForceField. Download Wolfram today for Minecraft 1.12.2 - 1.8.9!
layout: bare
screenshots:
https://cloud.githubusercontent.com/assets/10100202/19437982/09760392-9478-11e6-91d8-7299d76eef08.jpg: main menu
https://cloud.githubusercontent.com/assets/10100202/19437983/099131f8-9478-11e6-9f71-393252f7dc95.jpg: Minecraft 1.10 compatibility
https://cloud.githubusercontent.com/assets/10100202/19437984/09a12b8a-9478-11e6-87b7-94f6e438c285.jpg: ClickGUI
https://cloud.githubusercontent.com/assets/10100202/19437985/09a4752e-9478-11e6-980f-c661aa0a95c9.jpg: Nuker
https://cloud.githubusercontent.com/assets/10100202/19437987/09ac4f4c-9478-11e6-9f38-371d76fcb30a.jpg: Minecraft 1.9.4 compatibility
https://cloud.githubusercontent.com/assets/10100202/19437988/09b1df48-9478-11e6-98aa-3b6ffaa008fd.jpg: OptiFine integration
---
<div class="padding100 no-padding-left no-padding-right bg-steel" style="background-repeat: no-repeat;background-size: cover;background-position: center top;background-image: url('https://user-images.githubusercontent.com/10100202/92649120-d5b68880-f2ea-11ea-9233-f373496bfe01.jpg');">
<div style="width: 100%;height: 3.125rem;"></div>
<div class="container align-center">
<h1>
<img src="https://cloud.githubusercontent.com/assets/10100202/17509934/c2f6a232-5e1c-11e6-930b-9bbaee0c06be.png" alt="{{ page.title }}">
</h1>
</div>
</div>
<div class="padding20 no-padding-left no-padding-right">
<div class="container">
<h2>About Wolfram</h2>
<p>
Wolfram is a hacked client for Minecraft that allows you to do all kinds of cheats and hacks that the game normally wouldn't allow, such as flying in Survival Mode, finding ores with X-Ray vision and automatically attacking enemies.
</p>
<p>
The Wolfram Client is mostly known for its large collection of hacks, its high-quality NoCheat+ bypasses, a beautiful user interface and its built-in OptiFine integration.
</p>
<p>
Wolfram was originally created by ShadowSpl0it, who later donated the project to WiZARDHAX.com, and is now maintained by the Wurst-Imperium. We have updated the client to Minecraft 1.9.4, 1.10.x, 1.11.x and 1.12.x.
</p>
</div>
</div>
<div class="padding40 no-padding-left no-padding-right bg-grayLighter">
<div class="container align-center">
{% assign features = site.data.features %}
<h2>Features ({{ features.cheats.size | plus: features.commands.size | plus: features.other.size }})</h2>
</div>
</div>
<div class="padding20 no-padding-left no-padding-right">
<div class="container">
<div class="grid">
<div class="row">
<h3>Cheats ({{ features.cheats.size }})</h3>
</div>
<div class="row cells5">
{% assign colsize = features.cheats.size | divided_by: 5.0 | ceil %}
{% for i in (0..4) %}
<div class="cell">
<ul>
{% for i2 in (1..colsize) %}
{% assign i3 = i | times: colsize | plus: i2 | minus: 1 %}
{% if i3 >= features.cheats.size %}
{% break %}
{% endif %}
<li>{{ features.cheats[i3] }}</li>
{% endfor %}
</ul>
</div>
{% endfor %}
</div>
</div>
</div>
</div>
<div class="padding20 no-padding-left no-padding-right bg-grayLighter">
<div class="container">
<div class="grid">
<div class="row">
<h3>Commands ({{ features.commands.size }})</h3>
</div>
<div class="row cells5">
{% assign colsize = features.commands.size | divided_by: 5.0 | ceil %}
{% for i in (0..4) %}
<div class="cell">
<ul>
{% for i2 in (1..colsize) %}
{% assign i3 = i | times: colsize | plus: i2 | minus: 1 %}
{% if i3 >= features.commands.size %}
{% break %}
{% endif %}
<li>{{ features.commands[i3] }}</li>
{% endfor %}
</ul>
</div>
{% endfor %}
</div>
</div>
</div>
</div>
<div class="padding20 no-padding-left no-padding-right">
<div class="container">
<div class="grid">
<div class="row">
<h3>Other Features ({{ features.other.size }})</h3>
</div>
<div class="row cells5">
{% assign colsize = features.other.size | divided_by: 5.0 | ceil %}
{% for i in (0..4) %}
<div class="cell">
<ul>
{% for i2 in (1..colsize) %}
{% assign i3 = i | times: colsize | plus: i2 | minus: 1 %}
{% if i3 >= features.other.size %}
{% break %}
{% endif %}
<li>{{ features.other[i3] }}</li>
{% endfor %}
</ul>
</div>
{% endfor %}
</div>
</div>
</div>
</div>
<div class="padding20 no-padding-left no-padding-right bg-grayLighter">
<div class="container">
<div class="grid">
<div class="row">
<h2 class="align-center">Compatibility</h2>
</div>
<div class="row">
<table class="table border bordered bg-white">
<thead>
<tr>
<th>Wolfram Edition</th>
<th>Minecraft Versions</th>
<th>OptiFine Support</th>
</tr>
</thead>
<tbody>
<tr>
<td>Wolfram MC 1.12</td>
<td>1.12 - 1.12.2</td>
<td class="align-center"><span class="mif-checkmark fg-green"></span></td>
</tr>
<tr>
<td>Wolfram MC 1.11</td>
<td>1.11 - 1.11.2</td>
<td class="align-center"><span class="mif-checkmark fg-green"></span></td>
</tr>
<tr>
<td>Wolfram MC 1.10</td>
<td>1.10 - 1.10.2</td>
<td class="align-center"><span class="mif-checkmark fg-green"></span></td>
</tr>
<tr>
<td>Wolfram MC 1.9.4</td>
<td>1.9.4</td>
<td class="align-center"><span class="mif-checkmark fg-green"></span></td>
</tr>
<tr>
<td>Wolfram MC 1.8</td>
<td>1.8 - 1.8.9</td>
<td class="align-center"><span class="mif-checkmark fg-green"></span></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<div class="padding20 no-padding-left no-padding-right">
<div class="container align-center">
<div class="grid">
<div class="row">
<h2>Review by WiZARDHAX.com</h2>
</div>
<div class="row">
<div class="video-container no-padding-top">
<iframe src="https://www.youtube.com/embed/kBDcK2L-a_M?rel=0" frameborder="0" allowfullscreen=""></iframe>
</div>
</div>
</div>
</div>
</div>