Created
August 2, 2025 18:22
-
-
Save doxyf/291216ee9668cdca3a0d9b122ce930dd to your computer and use it in GitHub Desktop.
Put the generated link in browser and get free score on Fork On Finger hi-score cheat
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var C = (playerName, score) => { | |
var scorePayload = JSON.stringify({ | |
1: Math.random(), | |
n: playerName, | |
s: score, | |
2: Math.random() | |
}); | |
scorePayload = Buffer.from(encodeURIComponent(scorePayload), 'utf-8').toString('base64'); | |
var offset = 2 + (scorePayload.length & 3); | |
var length = scorePayload.length; | |
var leftover = length % (2 * offset); | |
var scrambled = ""; | |
for (var i = length - 1; i >= length - leftover; i--) { | |
scrambled += scorePayload.charAt(i); | |
} | |
scorePayload = scorePayload.substr(0, length - leftover); | |
while (scorePayload.length > 0) { | |
scrambled += scorePayload.substr(offset, offset) + scorePayload.substr(0, offset); | |
scorePayload = scorePayload.substr(2 * offset); | |
} | |
console.log("https://hiscores.pixel-cave.com/table/?i=fork-on-finger.pixel-cave.com&r="+scrambled) | |
}; | |
C("CoolNick", 9999) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment