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

How do we change the max level cap? #14

Closed ArcerionDev closed 4 years ago

ArcerionDev commented 4 years ago

So I've seen videos and things where people have gotten over level 100. How do we achieve this?

GyarGG commented 4 years ago

i had a friend who went over level 100 through hacking, but he showed me that like a week ago. Probably has been patched, but i'm pretty sure he stayed that level ;^|

On February 21, 2020 at 1:14 PM Magmischief notifications@github.com wrote:

its patched

—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub https://github.com/PatheticMustan/ProdigyMathGameHacking/issues/14?email_source=notifications&email_token=AOSEJGERD32MFCVAN66NYYDREA745A5CNFSM4KZFGX42YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEMUDLFQ#issuecomment-589837718 , or unsubscribe https://github.com/notifications/unsubscribe-auth/AOSEJGA3DXKVUKIMZCDLOYTREA745ANCNFSM4KZFGX4Q .
ArcerionDev commented 4 years ago

Good to know. Thanks!

On Fri, Feb 21, 2020, 5:12 PM GyarGG notifications@github.com wrote:

i had a friend who went over level 100 through hacking, but he showed me that like a week ago. Probably has been patched, but i'm pretty sure he stayed that level ;^|

On February 21, 2020 at 1:14 PM Magmischief notifications@github.com wrote:

its patched

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/PatheticMustan/ProdigyMathGameHacking/issues/14?email_source=notifications&email_token=AOSEJGERD32MFCVAN66NYYDREA745A5CNFSM4KZFGX42YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEMUDLFQ#issuecomment-589837718 , or unsubscribe https://github.com/notifications/unsubscribe-auth/AOSEJGA3DXKVUKIMZCDLOYTREA745ANCNFSM4KZFGX4Q .

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/PatheticMustan/ProdigyMathGameHacking/issues/14?email_source=notifications&email_token=AOQ7MLDWGEWJFPOQTXEHDK3REBGUDA5CNFSM4KZFGX42YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEMUIRLQ#issuecomment-589858990, or unsubscribe https://github.com/notifications/unsubscribe-auth/AOQ7MLGHKCH3K23EI6SKBWDREBGUDANCNFSM4KZFGX4Q .

ArcerionDev commented 4 years ago

If anyone finds anything/ has any ideas please let me know...

PatheticMustan commented 4 years ago

@Avn1114, IIRC you can just manually set your level...

PatheticMustan commented 4 years ago
PIXI.game.prodigy.player.getLevel.toString()

returns

function(){return Math.min(a.b.validateInt(this.data.level,r.a.MIN_LEVEL),r.a.MAX_LEVEL)}

so we can assume the level data is stored in PIXI.game.prodigy.player.data.level.

I wouldn't suggest increasing your level beyond 100.

PIXI.game.prodigy.player.data.level = 666

Sets it to 666, but the max level displayed is 100. I'm not exactly sure how they did it. 🤔

ArcerionDev commented 4 years ago

Ok, thx

On Fri, Feb 21, 2020, 10:50 PM Mustan Pathetic notifications@github.com wrote:

PIXI.game.prodigy.player.getLevel.toString()

returns

function(){return Math.min(a.b.validateInt(this.data.level,r.a.MIN_LEVEL),r.a.MAX_LEVEL)}

so we can assume the level data is stored in PIXI.game.prodigy.player.data.level.

I wouldn't suggest increasing your level beyond 100.

PIXI.game.prodigy.player.data.level = 666

Sets it to 666, but the max level displayed is 100. I'm not exactly sure how they did it. 🤔

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/PatheticMustan/ProdigyMathGameHacking/issues/14?email_source=notifications&email_token=AOQ7MLENRKWU2723Z52POV3RECOGZA5CNFSM4KZFGX42YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEMUWDRQ#issuecomment-589914566, or unsubscribe https://github.com/notifications/unsubscribe-auth/AOQ7MLHRSFU7FSK4N54CVVLRECOGZANCNFSM4KZFGX4Q .

ghost commented 4 years ago

Well, I changed PIXI.game.prodigy.player.data.level

It only showed up in a few pages, such as friends list... they must have a value stored somewhere named something like "maxLevel"

ArcerionDev commented 4 years ago

Could we find it and possibly nullify it?

On Sun, Mar 1, 2020 at 5:40 PM DaChickenKing notifications@github.com wrote:

Well, I changed PIXI.game.prodigy.player.data.level

It only showed up in a few pages, such as friends list... they must have a value stored somewhere named something like "maxLevel"

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/PatheticMustan/ProdigyMathGameHacking/issues/14?email_source=notifications&email_token=AOQ7MLDHGYQQHH7UH3O5NCLRFLP7VA5CNFSM4KZFGX42YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOENNNH3A#issuecomment-593155052, or unsubscribe https://github.com/notifications/unsubscribe-auth/AOQ7MLERBVQLECHSIS3EYODRFLP7VANCNFSM4KZFGX4Q .

ArcerionDev commented 4 years ago

Ok, we understand that the function setLevel/getLevel was the one capping everything, so @PatheticMustan already figured out a fix to this, so this is solved.