0
players online at play.zerenthalrpg.com
0
players online at play.zerenthalrpg.com
This is a quick tutorial about how to use my hack on DatJaps pong2 game. It removes the paddles and the ball bounces off the walls so you never die.
This tutorial is meant for chrome. I don't know if it works in other browsers.
If you don't have your bookmarks bar enabled hit Ctrl+Shift+B (You can disable it when your done using the cheat).
Right click on the bookmarks bar that's directly under the address bar and click add page.
An "Edit Bookmark" box should appear. You can enter what ever you want for the name. For the URL copy and paste this code.
javascript:(
function() {
setInterval(function() {
pdleX = ballX;
pdleY = ballY;
}, 1);
getMousePos = function() {
return {
x: ballX,
y: ballY
};
}
;
dead = function() {
if (ballX < 0 || ballX + ballSize > size) {
ballVelX = -ballVelX;
ballVelX += Math.random() * (ballVelX < 0 ? -0.5 : 0.5);
ballVelY += Math.random() * (ballVelY < 0 ? -0.5 : 0.5);
}
if (ballY < 0 || ballY + ballSize > size) {
ballVelY = -ballVelY;
ballVelY += Math.random() * (ballVelY < 0 ? -0.5 : 0.5);
ballVelX += Math.random() * (ballVelX < 0 ? -0.5 : 0.5);
}
if (!alive) {
alive = true;
ballVelX = 2;
ballVelY = 0;
ballX = 200;
ballY = 200;
}
}
;
})();
Go to the game and click on the bookmark you just created. The paddles should start following the ball for you and you'll no longer have control. Click in the black square to restart if you need to.
Enjoy!
Edit:
This is what happened after running it for a few minutes.
Youtube
It's at 1.4M points now