// Source - https://stackoverflow.com/q
// Posted by Ian
// Retrieved 2025-11-19, License - CC BY-SA 3.0
function speed(n) {
Runner.instance\_.setSpeed(n);
}
function noHit() {
Runner.prototype.gameOver = function() {
console.log("");
}
}
function notNoHit() {
Runner.prototype.gameOver = function() {
this.playSound(this.soundFx.HIT);
vibrate(200);
this.stop();
this.crashed = true;
this.distanceMeter.acheivement = false;
this.tRex.update(100, Trex.s
tatus.CRASHED);
}
}