forked from NtReadVirtualMemory/Roblox-Offsets-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
341 lines (341 loc) · 14.3 KB
/
index.html
File metadata and controls
341 lines (341 loc) · 14.3 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
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
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>0x108</title>
<link rel="icon" href="https://offsets.ntgetwritewatch.workers.dev/0x108_put_your_favicon_here.png" type="image/x-icon" />
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/toastify-js/src/toastify.min.css" />
<script src="https://cdn.jsdelivr.net/npm/toastify-js"></script>
<script src="https://unpkg.com/@phosphor-icons/web"></script>
<meta property="og:title" content="Roblox Offsets" />
<meta property="og:description" content="Crazy Sigma Offsets" />
<meta property="og:type" content="website" />
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.cdnfonts.com/css/satoshi');
* { font-family: 'satoshi', 'Inter', sans-serif; box-sizing: border-box; max-width: 100%; }
html, body { overflow-x: hidden; max-width: 100vw; width: 100%; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-thumb { background: #60A5FA; border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: #93C5FD; }
::-webkit-scrollbar-track { background: #0f0f23; border-radius: 6px; }
::selection { background: rgba(59, 130, 246, 0.3); color: #fff; }
.version-text::selection { -webkit-text-fill-color: white; color: white; background: rgba(59, 130, 246, 0.6); }
.card {
background: rgba(15, 15, 20, 0.6);
backdrop-filter: blur(20px);
border: 1px solid rgba(75, 85, 100, 0.3);
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
overflow: hidden;
box-shadow: 0 4px 32px rgba(0, 0, 0, 0.2);
}
.card::before {
content: '';
position: absolute;
bottom: -50%;
left: 50%;
transform: translateX(-50%);
width: 200px;
height: 140px;
background: radial-gradient(
ellipse,
rgba(96, 165, 250, 0.2) 0%,
rgba(147, 197, 253, 0.15) 30%,
rgba(59, 130, 246, 0.08) 60%,
transparent 100%
);
filter: blur(20px);
border-radius: 50%;
z-index: -1;
opacity: 0;
transition: all 0.3s ease;
}
.card::after {
content: '';
position: absolute;
bottom: -90%;
left: 50%;
transform: translateX(-50%);
width: 120px;
height: 100px;
background: radial-gradient(
ellipse,
rgba(168, 203, 255, 0.4) 0%,
rgba(96, 165, 250, 0.25) 40%,
transparent 100%
);
filter: blur(15px);
border-radius: 50%;
z-index: -1;
opacity: 0;
transition: all 0.3s ease;
}
.card:hover {
border-color: rgba(96, 165, 250, 0.5);
background: rgba(20, 20, 28, 0.85);
color: #fff;
transform: translateY(-4px) scale(1.02);
box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4), 0 0 40px rgba(96, 165, 250, 0.1);
}
.card:hover::before {
opacity: 1;
width: 240px;
height: 160px;
background: radial-gradient(
ellipse,
rgba(96, 165, 250, 0.25) 0%,
rgba(147, 197, 253, 0.18) 30%,
rgba(59, 130, 246, 0.12) 60%,
transparent 100%
);
}
.card:hover::after {
opacity: 1;
width: 150px;
height: 120px;
background: radial-gradient(
ellipse,
rgba(168, 203, 255, 0.5) 0%,
rgba(96, 165, 250, 0.35) 40%,
transparent 100%
);
}
.card button { transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.card button:hover { border-color: rgba(96, 165, 250, 0.5); transform: scale(1.05); }
.bg-gradient { background: radial-gradient(ellipse at top, #0f0f23 0%, #050507 50%, #000000 100%); min-height: 100vh; }
.bg-gradient::before {
content: '';
position: fixed; top: 0; left: 0; right: 0; bottom: 0;
background: radial-gradient(circle at 20% 50%, rgba(96,165,250,0.05) 0%,transparent 50%),
radial-gradient(circle at 80% 20%, rgba(147,197,253,0.03) 0%,transparent 50%),
radial-gradient(circle at 40% 80%, rgba(59,130,246,0.04) 0%,transparent 50%);
pointer-events: none; z-index: -1; }
@keyframes fadeInUp { from {opacity:0;transform:translateY(30px);} to {opacity:1;transform:translateY(0);} }
@keyframes float { 0%,100%{transform:translateY(0px);} 50%{transform:translateY(-10px);} }
.animate-fade-in-up { animation: fadeInUp 0.8s ease forwards; }
.animate-float { animation: float 6s ease-in-out infinite; }
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.toastify {
background: rgba(15, 15, 20, 0.95) !important;
backdrop-filter: blur(20px);
border: 1px solid rgba(75, 85, 100, 0.4);
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
border-radius: 12px !important;
font-family: 'Inter', sans-serif;
padding: 16px 24px !important;
display: flex !important;
align-items: center;
gap: 12px;
}
.toastify i { font-size: 1.3em; color: #60A5FA; }
.card-icon {
font-size: 2em;
margin-bottom: 0.75rem;
color: #93C5FD;
filter: drop-shadow(0 0 8px rgba(147, 197, 253, 0.3));
transition: all 0.3s ease;
}
.card:hover .card-icon { color: #DBEAFE; filter: drop-shadow(0 0 12px rgba(219, 234, 254, 0.5)); transform: scale(1.1); }
.title-glow { text-shadow: 0 0 30px rgba(96, 165, 250, 0.3); }
.main-content { min-height: 100vh; display: flex; flex-direction: column; position: relative; width: 100%; max-width: 100vw; overflow-x: hidden; }
.content-wrapper { flex: 1; display: flex; flex-direction: column; justify-content: center; padding-bottom: 40px; width: 100%; max-width: 100vw; overflow-x: hidden; }
footer { position: static; bottom: 0; left: 0; right: 0; backdrop-filter: blur(20px); background: rgba(15,15,35,0.4); border-top: 1px solid rgba(75,85,100,0.2); width: 100%; max-width: 100vw; overflow-x: hidden; }
.footer-link { transition: all 0.3s ease; position: relative; }
.footer-link:hover { transform: translateY(-1px); }
.crypto-card {
position: relative;
overflow: hidden;
background: rgba(15, 15, 20, 0.6);
backdrop-filter: blur(20px);
border: 1px solid rgba(75, 85, 100, 0.3);
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
box-shadow: 0 4px 32px rgba(0, 0, 0, 0.2);
}
.version-text {
background: linear-gradient(135deg, #93C5FD, #DBEAFE);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
font-weight: 500;
}
#btc-address, #ltc-address { word-break: break-all; overflow-wrap: break-word; hyphens:auto; max-width:100%; }
</style>
</head>
<body class="bg-gradient text-white">
<div class="main-content">
<div class="content-wrapper">
<main class="flex-grow flex items-center py-20">
<div class="max-w-5xl mx-auto px-4 sm:px-6 w-full">
<div class="text-center mb-20 opacity-0 animate-fade-in-up">
<h1 class="text-3xl sm:text-4xl md:text-5xl font-bold mb-6 tracking-tight title-glow animate-float">
<span class="text-blue-400">Offsets</span>
<span class="text-white">API</span>
</h1>
<p class="text-zinc-300 text-lg sm:text-xl max-w-2xl mx-auto leading-relaxed">
Access game offsets quickly and easily through our lightning-fast API endpoints
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-4 gap-6 mb-16">
<a href="https://offsets.ntgetwritewatch.workers.dev/offsets.hpp" class="card rounded-2xl p-4 sm:p-6 md:p-8 opacity-0 animate-fade-in-up delay-100 text-center group">
<i class="ph ph-file-cpp card-icon"></i>
<h3 class="text-xl font-semibold mb-3">offsets.hpp</h3>
<p class="text-zinc-300 text-base">C++ header file format for seamless integration</p>
</a>
<a href="https://offsets.ntgetwritewatch.workers.dev/offsets.json" class="card rounded-2xl p-4 sm:p-6 md:p-8 opacity-0 animate-fade-in-up delay-200 text-center group">
<i class="ph ph-brackets-curly card-icon"></i>
<h3 class="text-xl font-semibold mb-3">offsets.json</h3>
<p class="text-zinc-300 text-base">JSON format data for universal compatibility</p>
</a>
<a href="https://offsets.ntgetwritewatch.workers.dev/FFlags.hpp" class="card rounded-2xl p-4 sm:p-6 md:p-8 opacity-0 animate-fade-in-up delay-200 text-center group">
<i class="ph ph-brackets-curly card-icon"></i>
<h3 class="text-xl font-semibold mb-3">fflags.hpp</h3>
<p class="text-zinc-300 text-base">idk fflags ig</p>
</a>
<a href="https://offsets.ntgetwritewatch.workers.dev/version" class="card rounded-2xl p-4 sm:p-6 md:p-8 opacity-0 animate-fade-in-up delay-300 text-center group">
<i class="ph ph-tag card-icon"></i>
<h3 class="text-xl font-semibold mb-3">Version</h3>
<p class="text-zinc-300 text-base">Check current version and updates</p>
</a>
<a href="https://raw.githubusercontent.com/NtReadVirtualMemory/Roblox-Offsets-Website/main/internal-offsets.hpp" class="card rounded-2xl p-4 sm:p-6 md:p-8 opacity-0 animate-fade-in-up delay-400 text-center group">
<i class="ph ph-lock-key card-icon"></i>
<h3 class="text-xl font-semibold mb-3">Internal Offsets</h3>
<p class="text-zinc-300 text-base">Access internal game offsets for advanced integration</p>
</a>
</div>
<div class="opacity-0 animate-fade-in-up delay-500">
<p class="text-center mb-6 version-text text-lg" id="version">loading...</p>
<div class="support-wrapper">
<div class="text-center">
<button class="support-button" onclick="toggleSupport()">
<span class="support-text">
<i class="ph ph-heart text-blue-400"></i>
Support the Project
</span>
</button>
</div>
<div class="support-content" id="support-content" style="display: none;">
<div class="support-cards grid grid-cols-1 md:grid-cols-2 gap-6 mt-6">
<div class="card crypto-card p-4 sm:p-6 md:p-8 rounded-2xl">
<div class="flex items-center gap-3 mb-4">
<i class="ph ph-currency-btc text-orange-400 text-2xl"></i>
<h3 class="text-xl font-semibold">Bitcoin</h3>
</div>
<p class="text-zinc-300 text-sm mb-4 break-all font-mono bg-zinc-800/50 p-3 rounded-lg" id="btc-address">
bc1qdmhhlr8k4wak73vx0tf9xd3jux79su2s6yfgks
</p>
<button onclick="copyToClipboard('btc-address', this)" class="w-full px-6 py-3 bg-blue-500/15 text-blue-300 rounded-lg hover:bg-blue-500/25 transition-all duration-300 text-sm font-medium hover:transform hover:scale-[1.02]">
Copy Address
</button>
</div>
<div class="card crypto-card p-4 sm:p-6 md:p-8 rounded-2xl">
<div class="flex items-center gap-3 mb-4">
<i class="ph ph-currency-circle-dollar text-blue-400 text-2xl"></i>
<h3 class="text-xl font-semibold">Litecoin</h3>
</div>
<p class="text-zinc-300 text-sm mb-4 break-all font-mono bg-zinc-800/50 p-3 rounded-lg" id="ltc-address">
LT6pHQ2puuS7t32SXAFr11rnZv6KnuDikz
</p>
<button onclick="copyToClipboard('ltc-address', this)" class="w-full px-6 py-3 bg-blue-500/15 text-blue-300 rounded-lg hover:bg-blue-500/25 transition-all duration-300 text-sm font-medium hover:transform hover:scale-[1.02]">
Copy Address
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</main>
</div>
<footer class="py-8 text-center text-zinc-400 text-sm">
<a href="https://discord.gg/mvyXmWVkya" class="footer-link text-blue-400 hover:text-blue-300 transition-colors text-base font-medium">discord.gg/mvyXmWVkya</a>
<p class="mt-2 text-xs text-zinc-500">© 2026 0x108. All rights reserved.</p>
<p class="mt-1 text-xs text-zinc-500">
Designed by
<a href="https://discord.com/users/936249234510979183" class="text-blue-400 hover:text-blue-300 transition-colors">@hbyq</a>
</p>
</footer>
</div>
<script>
async function fetchVersion() {
try {
const response = await fetch("/version");
if (!response.ok) throw new Error();
const data = await response.text();
return data;
} catch (error) {
return "Error loading version";
}
}
function updateVersion() {
fetchVersion().then((version)=> {
document.getElementById("version").innerHTML = "Current Version: " + version;
}).catch(()=> {
document.getElementById("version").innerHTML = "Error loading version";
});
}
function copyToClipboard(id, button) {
const address = document.getElementById(id).textContent.trim();
navigator.clipboard
.writeText(address)
.then(() => {
Toastify({
text: "Address copied to clipboard",
duration: 3000,
gravity: "bottom",
position: "right",
className: "toastify-custom",
style: { color: "#fff" },
node: createToastContent("check-circle", "Address copied to clipboard"),
}).showToast();
})
.catch(() => {
Toastify({
text: "Failed to copy address",
duration: 3000,
gravity: "bottom",
position: "right",
className: "toastify-custom",
style: { background: "rgba(220, 38, 38, 0.95)", color: "#fff" },
node: createToastContent("x-circle", "Failed to copy address"),
}).showToast();
});
}
function createToastContent(icon, text) {
const container = document.createElement("div");
container.style.display = "flex";
container.style.alignItems = "center";
container.style.gap = "12px";
const iconElement = document.createElement("i");
iconElement.className = `ph ph-${icon}`;
iconElement.style.fontSize = "1.3em";
const textElement = document.createElement("span");
textElement.textContent = text;
textElement.style.fontWeight = "500";
container.appendChild(iconElement);
container.appendChild(textElement);
return container;
}
function toggleSupport() {
const supportContent = document.getElementById("support-content");
const supportText = document.querySelector(".support-text");
if (supportContent.classList.contains("show")) {
supportContent.classList.remove("show");
supportContent.style.display = "none"
supportText.innerHTML = '<i class="ph ph-heart text-blue-400"></i> Support the Project';
} else {
supportContent.style.display = "block";
supportContent.classList.add("show");
supportText.innerHTML = '<i class="ph ph-x text-blue-400"></i> Close';
}
}
updateVersion();
</script>
</body>
</html>