mineparkour-club-hax
Snippets of code for "hacking" mineparkour.club - a really broken web game I play when I'm bored in school
https://mineparkour.club/
And here is a discord server for 1337 haxers https://discord.gg/HBTtdVAUjt
how to use
- open the developer tools in your browser (Chromium browsers use F12 shortcut for dev tools)
- open console
- paste the code
- done!
guides
player
- You can access some of the player data with
controls.getObject()
- speed
- you can access the player's speed using global
speed
variable - default value is
80
- NOTE: the resulting speed is NOT frame-rate indepentent!
- you can access the player's speed using global
end box
- the AABB (axis aligned bounding box) of the end block is called
end
- members:
min
max
- members:
- you can calculate the center point by adding
min
andmax
components and dividing by two
(end.min.x + end.max.x) / 2
coins
- you can change the number of coins to arbitrary number using global variable
coins
skins
- use
chooseSkin(...)
function to set any skin - the argument is name of the skin from the shop, for exaple:
chooseSkin("god")
event listeners
you can add event listeners to listen to mouse/keyboard input
docuument.addEventListener(type, listener, ?options)
- type:
"keydown"
,"mousedown"
- listener: the function to run
example:
document.addEventListener("keydown", function(inp) {
console.log(inp.key)
if (inp.key != "g") { return; }
console.log("hello")
});
TODO
if you have an idea how to do any of these things, please feel free to commit
- custom skin loading
- enable chat (that seems to be an unfinished and disabled feature)