-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path404.html
More file actions
31 lines (30 loc) · 1.49 KB
/
404.html
File metadata and controls
31 lines (30 loc) · 1.49 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
<script>
var path = window.location.pathname.toLowerCase();
path = path.substring(path.lastIndexOf('/') + 1);
console.log(path);
if (path == "discord")
window.location.replace("https://discord.gg/bKvdZS8DKa");
if (path == "sha")
window.location.replace("https://dplusplus.me/hash")
if (path == "mining")
window.location.replace("https://dplusplus.me/mine.html?test")
// 1 in 128 or 0.8%
// if (path == "adjust")
// window.location.replace("https://dplusplus.me/mining.html?01FF0000000404CB000000000000000000000000000000000000000000000000?angel22");
// 1 in 256 chance or .4% -> 8 zeros
if (path == "epoch")
window.location.replace("https://dplusplus.me/mining.html?00F00000000404CB000000000000000000000000000000000000000000000000?love224");
// ___________
// ^^^^ we're not going to use those..........
// 1 in 512 chance or .2% -> 9 zeros
if (path == "pow")
window.location.replace("https://dplusplus.me/mining.html?006FF000000404CB000000000000000000000000000000000000000000000000?love336");
// 1 in 1024 or .1% -> 10 zeros
if (path == "mine")
window.location.replace("https://dplusplus.me/mining.html?003FF000000404CB000000000000000000000000000000000000000000000000?angel336");
// 1 in 2048 or .05% -> 11 zeros
if (path == "preimage")
window.location.replace("https://dplusplus.me/mining.html?001FF000000404CB000000000000000000000000000000000000000000000000?sweet345");
// catch all case
// window.location.replace("https://dplusplus.me");
</script>