Path: blob/master/cheatGUI/src/hacks/minigame.ts
2545 views
// Minigame Hacks12// BEGIN IMPORTS3import { category } from "../index"; // Import the Cheat GUI bases.4import Toggler from "../class/Toggler";5import { _ } from "../utils/util"; // Import Prodigy Typings.6import { Toast } from "../utils/swal"; // Import Toast and NumberInput from swal7// END IMPORTS8910// BEGIN MINIGAME HACKS11121314// Begin 69x Walk Speed15new Toggler(category.minigames, "69x Walk Speed [Dyno Dig]", "Walk so fast that you're teleporting, in Dyno Dig.").setEnabled(async () => {16_.instance.game.state.states.get("DinoDig").walkSpeed = 69;17return Toast.fire("Enabled!", "You will now walk so fast that you're teleporting in Dyno Dig.", "success");1819}).setDisabled(async () => {20_.instance.game.state.states.get("DinoDig").walkSpeed = 1.5;21return Toast.fire("Disabled!", "You will now walk at normal speed, in Dyno Dig.", "success");22});23// End 69x Walk Speed24252627// END MINIGAME HACKS282930