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

Commit 9080828

Browse files
committed
2 parents a9e1557 + ef84dc8 commit 9080828

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

willsCheatMenu/dist/bundle.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

willsCheatMenu/src/hacks/player.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -260,4 +260,14 @@ new Hack(category.player, "Fix Morph Crash").setClick(async () => {
260260
_.player.appearanceChanged = true;
261261

262262
await Toast.fire("Success!", "Fixed morph crash bug.", "success");
263+
});
264+
265+
new Hack(category.player, "Permanent Morph", "Makes Your Current Morph Last Forever.").setClick(async () => {
266+
if (!_.player.data.playerTransformation) {
267+
await Swal.fire("No Morph Active", "Please use a Morph Marble and try again.", "error");
268+
return;
269+
}
270+
_.player.data.playerTransformation.maxTime = Infinity;
271+
_.player.data.playerTransformation.timeRemaining = Infinity;
272+
await Toast.fire("Success!", "You're morph will last forever!", "success");
263273
});

willsCheatMenu/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ export const category = {
150150
};
151151

152152
if (localStorage.getItem("level")) {
153-
eval(`_.player.getLevel = () => {return ${localStorage.getItem("level")}}`)
153+
_.player.getLevel = () => localStorage.getItem("level");
154154
}
155155

156156
setTimeout(() => {

0 commit comments

Comments
 (0)