Prodigy-Hacking / ProdigyMathGameHacking

Prodigy Hacking: Hacking for the right reasons. | Questions? Ask on our Discord. https://discord.gg/XQDfbfq
https://prodigyhacking.com
Other
17 stars 10 forks source link

Save toggler status. #817

Closed hostedposted closed 3 years ago

hostedposted commented 3 years ago

Save the status of toggler's on willsCheatMenu.

So if you click toggle membership then reload, it is auto clicked.

NX721 commented 3 years ago

But that would get us in LEGAL isuues wouldn't it?

hostedposted commented 3 years ago

Something like this in code:

localStorage.setItem("membership", "false")
membership.onclick(function() {
    localStorage.setItem("membership", "true")
})
if (localStorage.getItem("membership")) {
    membership.click()
}

membership being the membership button. And it being for all togglers.

PatheticMustan commented 3 years ago

But that would get us in LEGAL isuues wouldn't it?

no lmao

Something like this in code:

localStorage.setItem("membership", "false")
membership.onclick(function() {
    localStorage.setItem("membership", "true")
})
if (localStorage.getItem("membership")) {
    membership.click()
}

membership being the membership button. And it being for all togglers.

seems like a good idea