Advertisement
TPlacella

Speedometer

Jan 6th, 2025
7
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.63 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Speedometer
  3. // @version 0.3
  4. // @author Calculamatrise
  5. // @match *://www.freeriderhd.com/create/
  6. // @match *://www.freeriderhd.com/create
  7. // @match *://www.freeriderhd.com/t/*
  8. // @match *://frhd.kanoapps.com/create/
  9. // @match *://frhd.kanoapps.com/create
  10. // @match *://frhd.kanoapps.com/t/*
  11. // @downloadURL https://gist.githubusercontent.com/Calculamatrise/12c81637eb85b01835a77f0fb0d23370/raw/705083954d345f52048adb247084fbad3e71b32f/speedometer.frhd.js
  12. // @icon https://www.google.com/s2/favicons?domain=freeriderhd.com
  13. // @run-at document-idle
  14. // @grant none
  15. // ==/UserScript==
  16.  
  17. let loaded = !1;
  18. GameManager.on('stateChange', state => {
  19. state.preloading === !1 && loaded === !1 && (loaded = !0);
  20. loaded && load()
  21. });
  22. window.hasOwnProperty('navigation') && navigation.addEventListener('navigate', () => loaded = !1, { passive: true });
  23.  
  24. function load() {
  25. const draw = Object.getPrototypeOf(GameManager.game.currentScene).draw;
  26. GameManager.game.currentScene.draw = function(ctx = this.game.canvas.getContext("2d")) {
  27. draw.apply(this, arguments);
  28. const speed = (!GameManager.game.currentScene.playerManager.firstPlayer.isAlive() ? 0 : this.playerManager.firstPlayer._baseVehicle.speed) + " km/h";
  29. ctx.save();
  30. ctx.font = "20px Arial";
  31. ctx.fillStyle = (window.hasOwnProperty("lite") && 'light' !== lite.storage.get('theme')) ? "white" : "black";
  32. ctx.fillText(speed, this.game.canvas.width - ctx.measureText(speed).width - 10, this.game.canvas.height - 10);
  33. ctx.restore()
  34. }
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement