Thanks to visit codestin.com
Credit goes to gist.github.com

Skip to content

Instantly share code, notes, and snippets.

@mcnole25
Last active September 10, 2025 01:40
Show Gist options
  • Save mcnole25/d8db7207abe0655fdf34ec1a26d08fb6 to your computer and use it in GitHub Desktop.
Save mcnole25/d8db7207abe0655fdf34ec1a26d08fb6 to your computer and use it in GitHub Desktop.
This code allows you to change your walk & jump speed in the game HTML5b by Coppersalts. Inject this code in the console to enable the cheat settings.
pow = document.createElement("input");
jum = document.createElement("input");
pow.type = "number";
jum.type = "number";
pow.value = 1;
jum.value = 11;
center.appendChild(pow);
center.appendChild(jum);
setInterval(function() {
power = Number(pow.value);
jumpPower = Number(jum.value);
goToCustomPage();
}, 1000);
function goToCustomPage() {
explorePage = Number(document.getElementById("pageNumber").value);
}
ii = document.createElement("input");
ii.type = "number";
ii.id = "pageNumber";
center.appendChild(ii);
@mcnole25
Copy link
Author

I have now updated it with a devtool feature - jump to page number.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment