- 👋 Hi, I’m @Pekgame
- 👀 I’m interested in Python!
- 🌱 I’m currently learning to code!
- 💞️ I’m looking to collaborate on uh... nothing
- 📫 How to reach me? Just read under this text!
Wanna hack a dino game?
Try this! chrome://dino (Real game) or Trex runner (Fake? game)
And show your friend that you are real hacker!
- Right click anywhere on the page and click Inspect.
- Go to Console tab. This is where we will enter the commands to tweak the game.
Paste this command and hit enter to boost your speed.
(You can change 100 to any number you want for it to be faster!)
Runner.instance_.setSpeed(100)
Paste this command and hit enter to jump higher.
(You can change 10 to any number you want for it to jump higher!)
Runner.instance_.tRex.setJumpVelocity(10)
Paste this command and hit enter to make you never lose the game.
Runner.instance_.gameOver = () => {}
Paste this command and hit enter to set your own score.
(You can change 500 to any number you want for more score!)
Runner.instance_.distanceRan = 500