您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Version 2.5.7 - Pretty much done, wont be doing anything else to this script -Final version
- // ==UserScript==
- // @name Drift Boss Hack
- // @namespace http://tampermonkey.net/
- // @version 2.5.7
- // @description Version 2.5.7 - Pretty much done, wont be doing anything else to this script -Final version
- // @author GDev
- // @match https://www.mathplayground.com/pg_drift_boss.html
- // @grant none
- // @run-at document-start
- // ==/UserScript==
- (function() {
- 'use strict';
- // Wait for the page to load
- window.addEventListener('load', function() {
- // Delay execution for 3 seconds
- setTimeout(function() {
- // Set the desired game data including coins and boosters
- localStorage.setItem('mjs-drift-boss-game-v1.0.1-dailyreward', '{"sound":0.7,"music":0.3,"score":0,"hasShownTutorial":false,"collectedCoin":10000000,"cars":[0,1,2,3,4,5,6,7],"currentCar":7,"currentTip":0,"booster1":10000000,"booster2":10000000,"booster3":10000000,"ko":0,"hasShownBoosterTutorial":false}');
- console.log('Hack Successful!');
- }, 2000); // 3000 milliseconds = 3 seconds
- });
- })();
- //Credit required.