Get Started
1- Go to
Bağlantıları görmek için lütfen
Giriş Yap
2-Click f12 to open Inspect Element
3-Click on the console to type the codes
Python
Python:
#not bot yet
import pyautogui
from PIL import Imge, ImageGrab
import time
def screenshot():
img=ImageGrab.grab().convert('L')
return img
def press(key):
pyautogui.keyDown(key)
return
def detect(data):
for i in range(485,525):
for j in range(220,260):
if data[i,j]<100:
press('up')
return
press('up')
time.sleep(2)
while True:
img=screenshot()
data=img.load()
detect(data)
Javascript
JavaScript:
Cheat list:
// Tweak Gravity Cheat:
Runner.instance_.tRex.config.GRAVITY = 0.1
// Modify your running speed -
Runner.instance_.setSpeed(1000)
// Set score.. Replace "12345" with whatever score you'd like! -
Runner.instance_.distanceRan = 12345 / Runner.instance_.distanceMeter.config.COEFFICIENT
// Modify dinosaur's velocity, make him jump as high as you want! - Runner.instance_.tRex.setJumpVelocity(10)
// Invincibility - Make your dinosaur immune to any damage! -
Runner.instance_.gameOver = function(){};
// Cheat allowing you to freeze the game, while still earning points -
Runner.instance_.playingIntro = true;
Post automatically merged:
Usage with python:
1- Install the required libraries.
pip install pyautogui
pip install Pillow
2- Go to
Bağlantıları görmek için lütfen
Giriş Yap
3- Run code with ide
Usage with javascript:
1- Go to
Bağlantıları görmek için lütfen
Giriş Yap
2-Click f12 to open Inspect Element
3-Click on the console to type the codes
Son düzenleme: