Skip to content
This repository has been archived by the owner on Apr 7, 2022. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
ArcerionDev committed May 16, 2021
2 parents a9e1557 + ef84dc8 commit 9080828
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion willsCheatMenu/dist/bundle.js

Large diffs are not rendered by default.

10 changes: 10 additions & 0 deletions willsCheatMenu/src/hacks/player.ts
Original file line number Diff line number Diff line change
Expand Up @@ -260,4 +260,14 @@ new Hack(category.player, "Fix Morph Crash").setClick(async () => {
_.player.appearanceChanged = true;

await Toast.fire("Success!", "Fixed morph crash bug.", "success");
});

new Hack(category.player, "Permanent Morph", "Makes Your Current Morph Last Forever.").setClick(async () => {
if (!_.player.data.playerTransformation) {
await Swal.fire("No Morph Active", "Please use a Morph Marble and try again.", "error");
return;
}
_.player.data.playerTransformation.maxTime = Infinity;
_.player.data.playerTransformation.timeRemaining = Infinity;
await Toast.fire("Success!", "You're morph will last forever!", "success");
});
2 changes: 1 addition & 1 deletion willsCheatMenu/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ export const category = {
};

if (localStorage.getItem("level")) {
eval(`_.player.getLevel = () => {return ${localStorage.getItem("level")}}`)
_.player.getLevel = () => localStorage.getItem("level");
}

setTimeout(() => {
Expand Down

0 comments on commit 9080828

Please sign in to comment.