Skip to content

Instantly share code, notes, and snippets.

@R1DD1387
Created February 28, 2020 12:37
Show Gist options
  • Star 10 You must be signed in to star a gist
  • Fork 7 You must be signed in to fork a gist
  • Save R1DD1387/0756d2675e21410afd0d7f32382bf63e to your computer and use it in GitHub Desktop.
Save R1DD1387/0756d2675e21410afd0d7f32382bf63e to your computer and use it in GitHub Desktop.
Modmenu for the game Prodigy
function closeit(){
prodigydiv.remove()
}
setTimeout("closeit", 3000);
function getallCurrencies() {
PIXI.game.prodigy.player.backpack.data.currency=[]
x = PIXI.game.state.states.Boot._gameData.currency
for (i in x) {
PIXI.game.prodigy.player.backpack.data.currency[i] = {"ID": x[i].ID, "N": 9999999999}
}
}
function getallBuddies() {
PIXI.game.prodigy.player.backpack.data.follow=[]
x = PIXI.game.state.states.Boot._gameData.follow
for (i in x) {
PIXI.game.prodigy.player.backpack.data.follow[i] = {"ID": x[i].ID, "N": 1}
}
}
function getallItems() {
PIXI.game.prodigy.player.backpack.data.item=[]
x = PIXI.game.state.states.Boot._gameData.item
for (i in x) {
PIXI.game.prodigy.player.backpack.data.item[i] = {"ID": x[i].ID, "N": 9999999999}
}
}
function getallRelics() {
PIXI.game.prodigy.player.backpack.data.spellRelic=[]
x = PIXI.game.state.states.Boot._gameData.spellRelic
for (i in x) {
PIXI.game.prodigy.player.backpack.data.spellRelic[i] = {"ID": x[i].ID, "N": 99999999999999}
}
}
function getallHats() {
PIXI.game.prodigy.player.backpack.data.hat=[]
x = PIXI.game.state.states.Boot._gameData.hat
for (i in x) {
PIXI.game.prodigy.player.backpack.data.hat[i] = {"ID": x[i].ID, "N": 9999999999999999}
}
}
function getallOutfits() {
PIXI.game.prodigy.player.backpack.data.outfit=[]
x = PIXI.game.state.states.Boot._gameData.outfit
for (i in x) {
PIXI.game.prodigy.player.backpack.data.outfit[i] = {"ID": x[i].ID, "N": 99999999999999}
}
}
function getallBoots() {
PIXI.game.prodigy.player.backpack.data.boots=[]
x = PIXI.game.state.states.Boot._gameData.boots
for (i in x) {
PIXI.game.prodigy.player.backpack.data.boots[i] = {"ID": x[i].ID, "N": 99999999999999}
}
}
function getallWeapons() {
PIXI.game.prodigy.player.backpack.data.weapon=[]
x = PIXI.game.state.states.Boot._gameData.weapon
for (i in x) {
PIXI.game.prodigy.player.backpack.data.weapon[i] = {"ID": x[i].ID, "N": 1}
}
}
function getallGems() {
PIXI.game.prodigy.player.backpack.data.key=[]
x = PIXI.game.state.states.Boot._gameData.key
for (i in x) {
PIXI.game.prodigy.player.backpack.data.key[i] = {"ID": x[i].ID, "N": 1}
}
}
function FreeMembership(){
PIXI.game.prodigy.player.tt=true
}
function levelup(){
PIXI.game.prodigy.player.data.level=100
}
function levelUpPets() {
for (let PetLoopTest = 0; PetLoopTest < PIXI.game.prodigy.player.kennel.data.length; PetLoopTest++) {
PIXI.game.prodigy.player.kennel.data[PetLoopTest].level=100
};
}
var prodigydiv = document.createElement("prodigydiv");
prodigydiv.style.width = "100px";
prodigydiv.style.height = "100px";
prodigydiv.style.background = "black";
prodigydiv.style.color = "purple";
prodigydiv.innerHTML = '<button type="button" onclick="{prodigydiv.remove();}">Close</button> <button type="button" onclick="{FreeMembership();}">Free Membership</button> <button type="button" onclick="{PIXI.game.prodigy.debugMisc.smallLoan(10000000000000);}">1,000,000,000,0000 Coins</button> <button type="button" onclick="{PIXI.game.prodigy.debugMisc.getAllPets();}">Get All Pets</button> <button type="button" onclick="{PIXI.game.prodigy.player.backpack.data.item.push({"N":999999,"ID":130});}">Infinite Wheel Spins</button> <button type="button" onclick="{FreeAtSchool()}">Unlock Zones at School</button> <button type="button" onclick="{levelup()}">Level Up</button> <button type="button" onclick="{levelUpPets()}">Level Up Pets</button> <button type="button" onclick="{PIXI.game.prodigy.player.appearance._name.nickname=7}">W12-4RD Nickname</button> <button type="button" onclick="{getallBuddies()}">Get All Buddies</button> <button type="button" onclick="{getallItems()}">Get All Items</button> <button type="button" onclick="{getallRelics()}">Get All Relics</button> <button type="button" onclick="{getallHats()}">Get All Hats</button> <button type="button" onclick="{getallOutfits()}">Get All Outfits</button> <button type="button" onclick="{getallBoots()}">Get All Boots</button> <button type="button" onclick="{getallWeapons()}">Get All Weapons</button> <button type="button" onclick="{getallGems()}">Get All Gems</button><p>Custom Prodigy Mod Menu made by R1DD13 #8209</p>';
document.body.insertBefore(prodigydiv, document.body.firstChild);
@ProdigyHacker25
Copy link

ProdigyHacker25 commented Apr 20, 2021 via email

@ProdigyHacker25
Copy link

ProdigyHacker25 commented Apr 20, 2021 via email

@ProdigyHacker25
Copy link

ProdigyHacker25 commented Apr 20, 2021 via email

@ProdigyHacker25
Copy link

ProdigyHacker25 commented Apr 20, 2021 via email

@ProdigyHacker25
Copy link

ProdigyHacker25 commented Apr 20, 2021 via email

@ProdigyHacker25
Copy link

ProdigyHacker25 commented Apr 20, 2021 via email

@pwixs
Copy link

pwixs commented Apr 21, 2021

anyone want their account hacked with everything

@Membership-ramosmonjaras

Hi there prodigy hacker25 can you hack my account with the infinity level please email me Jacque-ramosmonjaras@pgcps.org with every thing please

@Membership-ramosmonjaras

here is may account Username:SuperD984 Password:place70

@Membership-ramosmonjaras

here is may account Username:SuperD984 Password:place70

@Membership-ramosmonjaras

With everthing membership epics

@Membership-ramosmonjaras

p

@Membership-ramosmonjaras

and yes

@1fnafexpert1
Copy link

anyone want their account hacked with everything

me please but i dont know how to send

@Firebreather-alexis
Copy link

Free prodigy account Use:SuperD984 Pass:Star Do not change the password

@Firebreather-alexis
Copy link

hack it

@Firebreather-alexis
Copy link

Use:pradyunsaip Pass:dog8

@Justice12336
Copy link

can one of u guys hack my account please I'm on school Chromebook?

@Justice12336
Copy link

please it does not work for me can ProdigyHacker25 hack my account??????????

@thew123
Copy link

thew123 commented Jun 4, 2021

👊🏼👍🏼👎🏼✋🏼✌🏼🤞🏼👌🏼🤙🏼🖖🏼

@thew123
Copy link

thew123 commented Jun 4, 2021

👊🏼👍🏼👎🏼✋🏼✌🏼🤞🏼👌🏼🤙🏼🖖🏼

@DarkVoid666
Copy link

does anyone know where the console is in the source (plz if you know please tell me I spent a while trying to set this up :( )

@tenks889
Copy link

tenks889 commented Jul 17, 2021

const GAMEDATA = _.gameData;
const PLAYERBACKPACK = _.player.backpack.data;
const PLAYERDATA = _.player.data;
const PLAYERVAR = _.player;

function closeit() {
prodigydiv.remove();
setTimeout(3000);
}
function getAllCurrencies() {
x = GAMEDATA.currency;
for (let i in x) {
PLAYERBACKPACK.currency[i] = {"ID": x[i].ID, "N": 999999999};
}
}
function getAllBuddies() {
x = GAMEDATA.follow;
for (let i in x) {
PLAYERBACKPACK.follow[i] = {"ID": x[i].ID, "N": 999999999};
}
}
function getAllItems() {
x = GAMEDATA.item;
for (let i in x) {
PLAYERBACKPACK.item[i] = {"ID": x[i].ID, "N": 999999999};
}
}
function getAllRelics() {
x = GAMEDATA.spellRelic;
for (let i in x) {
PLAYERBACKPACK.spellRelic[i] = {"ID": x[i].ID, "N": 999999999};
}
}
function getAllHats() {
x = GAMEDATA.hat;
for (let i in x) {
PLAYERBACKPACK.hat[i] = {"ID": x[i].ID, "N": 999999999};
}
}
function getAllOutfits() {
x = GAMEDATA.outfit;
for (let i in x) {
PLAYERBACKPACK.outfit[i] = {"ID": x[i].ID, "N": 999999999};
}
}
function getAllBoots() {
x = GAMEDATA.boots;
for (let i in x) {
PLAYERBACKPACK.boots[i] = {"ID": x[i].ID, "N": 999999999};
}
}
function getAllWeapons() {
x = GAMEDATA.weapon;
for (let i in x) {
PLAYERBACKPACK.weapon[i] = {"ID": x[i].ID, "N": 999999999};
}
}
function getAllGems() {
x = GAMEDATA.key;
for (let i in x) {
PLAYERBACKPACK.key[i] = {"ID": x[i].ID, "N": 999999999};
}
}
function freeMembership(){
PLAYERVAR.P = true;
}
function levelUp() {
const lvl = prompt("What level do you want to be? How much health do you want? Type in 'n' to cancel, case sensitive.",'100');
if (lvl == Number && lvl != 'n') {
PLAYERDATA.level = lvl;
} else if (lvl == 'n' || lvl === '') {
alert('Cancelled.');
} else if (lvl != Number && lvl != 'n' && lvl !== '') {
alert('Error. Not a number.');
} else {
alert('undefined');
}
}
function setGold() {
const money = prompt("How much gold do you want? How much health do you want? Type in 'n' to cancel, case sensitive.");
if (money == Number && money != 'n') {
PLAYERDATA.gold = money;
} else if (money == 'n' || money === '') {
alert('Cancelled.');
} else if (money != Number && money != 'n' && money !== '') {
alert('Error. Not a number');
} else {
alert('undefined');
}
}
function dmgPrompt() {
const DMG = prompt("How much damage do you want to deal? Type in 'n' to cancel, case sensitive.");
if (DMG == Number && DMG != 'n') {
PLAYERVAR.modifiers.damage = DMG;
} else if (DMG == 'n' || DMG === '') {
alert('Cancelled.');
} else if (DMG != Number && DMG != 'n' && DMG !== '') {
alert('Error. Not a number.');
} else {
alert('undefined');
}
}
function hpPrompt() {
const HP = prompt("How much health do you want? Type in 'n' to cancel, case sensitive.");
if (HP == Number && HP != 'n') {
PLAYERVAR.modifiers.maxHealth = HP;
} else if (HP == 'n' || HP === '') {
alert('Cancelled.');
} else if (HP != Number && HP != 'n' && HP !== '') {
alert('Error. Not a number.');
} else {
alert('undefined');
}
}
function levelUpPets() {
for (let PetLoopTest = 0; PetLoopTest < PLAYERVAR.kennel.data.length; PetLoopTest++) {
PLAYERVAR.kennel.data[PetLoopTest].level = 100;
}
}
function save() {
PLAYERVAR.forceSaveCharacter;
}
function freeAtSchool() {
hack.instance.prodigy.classModeController.lockedZones = 0;
}
const prodigydiv = document.createElement("prodigydiv");
prodigydiv.style.width = "100px";
prodigydiv.style.height = "100px";
prodigydiv.style.background = "black";
prodigydiv.style.color = "purple";
prodigydiv.innerHTML = 'Close Free Membership Set Gold Get All Pets <button type="button" onclick="{playerBackpack.item.push({"N":999999,"ID":130});}">Infinite Wheel Spins Unlock Zones at School Level Up Level Up Pets W12-4RD Nickname Get All Buddies Get All Items Get All Relics Get All Hats Get All Outfits Get All Boots Get All Weapons Get All Gems Save Game Mod Damage Mod HP

Custom Prodigy Mod Menu made by NemoXfish based off of craftersshaft and EEvans mod menu (which is now deleted).

';

document.body.insertBefore(prodigydiv, document.body.firstChild);
Prompts.js

then press shift and ctrl i and should pop up the ctrl v star the hacking
Screenshot 2021-07-17 19 21 45

then press ctrl v start hacking your account you're welcome

wait do you know how to do it

😭

@tenks889
Copy link

you are very blocked

@zay-clout
Copy link

how do i start hacking?

@prodgypalyers
Copy link

pls can some one give every thing in prodigy

@pwixs
Copy link

pwixs commented Feb 1, 2022

@prodgypalyers bruh u realize you could just get hacked and instead have your account ruined instead

@prodgypalyers
Copy link

no its not happening

@OpticaIAce
Copy link

please hack my account i want membership Username:BrodyS15621 Password:jQfQP@p&Jb6_b*P

@OpticaIAce
Copy link

Please i want membership only please hack my account

@OpticaIAce
Copy link

ProdigyHacker25

@prodigyplayer210
Copy link

hi

@prodigyplayer210
Copy link

brohttps://gist.github.com/OpticaIAce imm puting you in meber

@prodigyplayer210
Copy link

[OpticaIAce i putted you in member and the member is ended

@prodigyplayer210
Copy link

![Screenshot 2022-02-26 11 45 20 AM](https://user-images.githubuserc
ontent.com/100458496/155851538-669484ad-f25b-4cf0-8153-e9e935c80d33.png)

@ninetailfox12
Copy link

help me please

@ninetailfox12
Copy link

can someone hack me

@xPF-Bully
Copy link

How do I enter the code?

@HIilove
Copy link

HIilove commented Mar 12, 2022

What??

@HIilove
Copy link

HIilove commented Mar 12, 2022

Someone hack my account plssssss!!!

@HIilove
Copy link

HIilove commented Mar 12, 2022

User: PaitynM411 Pass-code: Book48

@HIilove
Copy link

HIilove commented Mar 12, 2022

prodigygame.com/launcher?code=55W-Z8atbg8yNDgeBowO8LqVs1s_xcsT8AvVNkprz2Q&state=c68d1abac9c54b22a1a2765f9ecd57c3

@wasymastero
Copy link

DUDE

@wasymastero
Copy link

YOU ALL DUMBOS

@HIilove
Copy link

HIilove commented Mar 13, 2022

I am still confused did u hack my account??? and i'm not dumb i just am confused also do u hack??

@xPF-Bully
Copy link

xPF-Bully commented Mar 13, 2022 via email

@xPF-Bully
Copy link

Yo @HIilove add my Snapchat @GeneralKqdeh and tell me what you want cause i got the hacks to work

@mihitala
Copy link

mihitala commented Mar 18, 2022

Can you please hack my account on Prodigy I really want trailmaster gear and miras robe and dragonx gear and rainbow cloud also level 100 I want every single gear and every single wand and also every arena award please and also every single epic and buddy : username Jakylonm10 :Password 5639

@pwixs
Copy link

pwixs commented Mar 20, 2022

guys just download the hacking extension it's that simple

@mihitala
Copy link

for me I'm on a school laptop and the extension is blocked by admin so that's why I'm here lol

@HaCkerdontell
Copy link

Someone hack my account pls i just want member ship and every pet in the game with some levels pls username:fortnitek1244
password:passwords someone hack my account comment when done

@HaCkerdontell
Copy link

@mihitala there u go everything in your inv not level 100 but close

@mihitala
Copy link

ok thank you

@mihitala
Copy link

mihitala commented Mar 28, 2022

omg i just got it thank you sooo much!! @HaCkerdontell

@vonvon1046
Copy link

i wish I knew how to hack so I can give ya stuff @HaCkerdontell

@vonvon1046
Copy link

Hey can u get me mimbership and ranibow cloud and a tun lod of coins my usser:avonm20pass:am9395 @HaCkerdontell

@vonvon1046
Copy link

hi nigger in gay people

@pwixs
Copy link

pwixs commented Mar 30, 2022

wtf is wrong with you

@mihitala
Copy link

mihitala commented Apr 2, 2022

thats not very nice bruh

@hey55
Copy link

hey55 commented Apr 4, 2022

@HaCkerdontell please hack my account plzzzz Username:AdanR23311 Password:8526 PLZZZZZZ HACK MY ACCOUNT

@prodigy123-s
Copy link

Can someone plz give me member ship and lvl 100 and all pets user demondp103 pass book44 comment when done

@dakotas34
Copy link

i try to get hack extension but it is 404 not working

@dakotas34
Copy link

i hack prodigy thought

@Selivus07
Copy link

Someone hack my acc pls. username: MauriceB2093 .Password: 906696

Please i want to make my friends scream at school, and thx

@Selivus07
Copy link

or teach me how to do it

@ineedsomeonetohackprodigymathaccount

me
to

@ineedsomeonetohackprodigymathaccount

me

@Starlightq
Copy link

Guys its a SCAM

@brob1587
Copy link

@HaCkerdontell pls hack my acc username is : kasonm694
Pass is : holy

@brob1587
Copy link

And add hack menu

@dakotas12
Copy link

omg i have hacks and my coputer disallowed the hacks on prodigy

@dakotas12
Copy link

and i try and an extension it did have 404 error

@dakotas12
Copy link

i had a 404 error

@dakotas12
Copy link

dang it the school blocked my haks

@mihitala
Copy link

sup guys im finally back after 11 days looks like we have some new members :)

@mihitala
Copy link

and its not a scam ive been here way longer than most of you guys and i got all the stuff i asked for but it might take a couple days- a couple of weeks

@Roxstar12
Copy link

Hey i have almost every thing but not some epics and not member so can u please do it for me.
Username : ishanr159
Password: book69

@rinnegan12345
Copy link

Hi can you give me everything in the game
Username PrithviV54
password Ultimate or 10042011

@rinnegan12345
Copy link

how do you use the code anyways

@Padster737
Copy link

i had a mystile and a keeper and someone set them free

@Padster737
Copy link

and a whole lot of other pets

@Padster737
Copy link

stlll dont have membership tho

@mihitala
Copy link

that don't normally happen cause when i got my stuff it didn't do anything but change my avatar to a girl so that pretty strange

@ThatMissGirl
Copy link

HELLO PPL, DON'T LEAVE UR ACC HERE, PPL MIGHT COME INTO UR ACC OR SMTH. ALSO I TRIED IT IT DIDN'T WORK SADLY.

@SUSSYpastaR
Copy link

this does not work :(

@mihitala
Copy link

what do yeah meen by don't leave your acc here

@mihitala
Copy link

bc how are ppl supposed to log into your acc but first of all do you mean login to your aculler acc or this acc

@ryan15354
Copy link

@mihitala can u use it on my account and get me everything the mod apk gives you

@mihitala
Copy link

@ryan15354 of prodigy no cause i dont have the hacks but i can maybe contaced the guy who gave me the stuff if thats alright with you bro

@mihitala
Copy link

but his name is @HaCkerdontell but he hasn't been on for a while so i can find sum1 else to give u the items

@ineedsomeonetohackprodigymathaccount

help me to pls

@ineedsomeonetohackprodigymathaccount

Copy link

ghost commented Apr 29, 2022

Someone hack my acc pls. username: .Password:

Please i want to make my friends scream at school, and thx

jobs done, please delete your credentials from here, as people can reset your progress
edit: i did your home progress lol you had none

@ineedsomeonetohackprodigymathaccount

@jat354155 do me pls

Copy link

ghost commented Apr 29, 2022

@jat354155 do me pls

oke doke what stuff-
edit: user and pass
edit 2x: I can't put stuff on ur acc while I'm not on it-

@ineedsomeonetohackprodigymathaccount

every thing

@ineedsomeonetohackprodigymathaccount

like a god account

@ineedsomeonetohackprodigymathaccount

and can I hire you for my business

Copy link

ghost commented Apr 29, 2022

and can I hire you for my business

hire? no thanks. could'ja reread my last message?

Copy link

ghost commented Apr 29, 2022

and can I hire you for my business

okay then I'll send it again... I can't put stuff on your acc while I'm not on it, I need both your username and your password *prodigy one lol you can delete it from here when I am done, I swear to god this is no scam.
edit: oh it didn;t load lol

@ineedsomeonetohackprodigymathaccount

u done

@ineedsomeonetohackprodigymathaccount

what do i do

@ineedsomeonetohackprodigymathaccount

and waht do u use to hac it

Copy link

ghost commented Apr 29, 2022

and can I hire you for my business

you need permission to play after school hours lol

@ineedsomeonetohackprodigymathaccount

huh

@ineedsomeonetohackprodigymathaccount

what u use to hac it

Copy link

ghost commented Apr 29, 2022

huh

jobs done
edit: i use Phex, which was deleted long ago

@ineedsomeonetohackprodigymathaccount

ohhh

@ineedsomeonetohackprodigymathaccount

can u send me the link
to phex

@ineedsomeonetohackprodigymathaccount

@jat354155 do u do iready overloaded

Copy link

ghost commented Apr 29, 2022

@jat354155 do u do iready overloaded

ye

@ineedsomeonetohackprodigymathaccount

help me

Copy link

ghost commented Apr 29, 2022

@jat354155 do u do iready overloaded

https://github.com/ProdigyPNP/ProdigyMathGameHacking/blob/master/PHEx/build/extension.zip
that's the version i use
edit: extract the files by right clicking, and then drag the extracted files into chrome://extensions/ with dev mode enabled (on chrome lol)

Copy link

ghost commented Apr 29, 2022

@ineedsomeonetohackprodigymathaccount are you reading these still?

@ineedsomeonetohackprodigymathaccount

ok thanks

Copy link

ghost commented Apr 29, 2022

ok thanks

are you enjoying your new hax?

@ineedsomeonetohackprodigymathaccount

yes

@ineedsomeonetohackprodigymathaccount

about the iready

@ineedsomeonetohackprodigymathaccount

what do u use

Copy link

ghost commented Apr 29, 2022

what do u use

at the moment nothing, I am currently manually farming minutes and doing a lesson...*each week

Copy link

ghost commented Apr 29, 2022

what do u use

assuming that you are in elementary, I would suggest trying i-ready overload, if it works, then keep using it...
when you reach middle school either manually do lessons, or use i-ready overload...

@Kai2dope
Copy link

How

@mihitala
Copy link

mihitala commented May 2, 2022

@ineedsomeonetohackprodigymathaccount bruh i wish i could help you but i don't know how to hack it was @HaCkerdontell who did it for me sorry

@mihitala
Copy link

mihitala commented May 2, 2022

and @Kai2dope if you are an elementary school like me your computer prob doesn't allow you to download the hacking extension cause prob blocked by the admin so you came to the right place just wait until sum1 hacks you and gives you items

@mihitala
Copy link

mihitala commented May 2, 2022

hold up you need school permission to play prodigy after school hours? WTF!! are u kindergartener lol

@mihitala
Copy link

mihitala commented May 2, 2022

also sum1 plz make me admin in this program plz?

@eatmytoe
Copy link

dude it dont work

@mihitala
Copy link

FR?

@hackfindermod
Copy link

@jat354155 do u do iready overloaded

https://github.com/ProdigyPNP/ProdigyMathGameHacking/blob/master/PHEx/build/extension.zip that's the version i use edit: extract the files by right-clicking, and then drag the extracted files into chrome://extensions/ with dev mode enabled (on chrome lol)

how do i extract the files?

@mihitala
Copy link

?

@spelunkyman
Copy link

you need to copy a line out of the script for say get all hats

@kolerainey
Copy link

prodigydiv.remove()
}
setTimeout("closeit", 3000);
function getallCurrencies() {
PIXI.game.prodigy.player.backpack.data.currency=[]
x = PIXI.game.state.states.Boot._gameData.currency
for (i in x) {
PIXI.game.prodigy.player.backpack.data.currency[i] = {"ID": x[i].ID, "N": 9999999999}
}
}
function getallBuddies() {
PIXI.game.prodigy.player.backpack.data.follow=[]
x = PIXI.game.state.states.Boot._gameData.follow
for (i in x) {
PIXI.game.prodigy.player.backpack.data.follow[i] = {"ID": x[i].ID, "N": 1}
}
}
function getallItems() {
PIXI.game.prodigy.player.backpack.data.item=[]
x = PIXI.game.state.states.Boot._gameData.item
for (i in x) {
PIXI.game.prodigy.player.backpack.data.item[i] = {"ID": x[i].ID, "N": 9999999999}
}
}
function getallRelics() {
PIXI.game.prodigy.player.backpack.data.spellRelic=[]
x = PIXI.game.state.states.Boot._gameData.spellRelic
for (i in x) {
PIXI.game.prodigy.player.backpack.data.spellRelic[i] = {"ID": x[i].ID, "N": 99999999999999}
}
}
function getallHats() {
PIXI.game.prodigy.player.backpack.data.hat=[]
x = PIXI.game.state.states.Boot._gameData.hat
for (i in x) {
PIXI.game.prodigy.player.backpack.data.hat[i] = {"ID": x[i].ID, "N": 9999999999999999}
}
}
function getallOutfits() {
PIXI.game.prodigy.player.backpack.data.outfit=[]
x = PIXI.game.state.states.Boot._gameData.outfit
for (i in x) {
PIXI.game.prodigy.player.backpack.data.outfit[i] = {"ID": x[i].ID, "N": 99999999999999}
}
}
function getallBoots() {
PIXI.game.prodigy.player.backpack.data.boots=[]
x = PIXI.game.state.states.Boot._gameData.boots
for (i in x) {
PIXI.game.prodigy.player.backpack.data.boots[i] = {"ID": x[i].ID, "N": 99999999999999}
}
}
function getallWeapons() {
PIXI.game.prodigy.player.backpack.data.weapon=[]
x = PIXI.game.state.states.Boot._gameData.weapon
for (i in x) {
PIXI.game.prodigy.player.backpack.data.weapon[i] = {"ID": x[i].ID, "N": 1}
}
}
function getallGems() {
PIXI.game.prodigy.player.backpack.data.key=[]
x = PIXI.game.state.states.Boot._gameData.key
for (i in x) {
PIXI.game.prodigy.player.backpack.data.key[i] = {"ID": x[i].ID, "N": 1}
}
}
function FreeMembership(){
PIXI.game.prodigy.player.tt=true
}
function levelup(){
PIXI.game.prodigy.player.data.level=100
}
function levelUpPets() {
for (let PetLoopTest = 0; PetLoopTest < PIXI.game.prodigy.player.kennel.data.length; PetLoopTest++) {
PIXI.game.prodigy.player.kennel.data[PetLoopTest].level=100
};
}
var prodigydiv = document.createElement("prodigydiv");
prodigydiv.style.width = "100px";
prodigydiv.style.height = "100px";
prodigydiv.style.background = "black";
prodigydiv.style.color = "purple";
prodigydiv.innerHTML = 'Close Free Membership 1,000,000,000,0000 Coins Get All Pets <button type="button" onclick="{PIXI.game.prodigy.player.backpack.data.item.push({"N":999999,"ID":130});}">Infinite Wheel Spins Unlock Zones at School Level Up Level Up Pets W12-4RD Nickname Get All Buddies Get All Items Get All Relics Get All Hats Get All Outfits Get All Boots Get All Weapons Get All Gems

Custom Prodigy Mod Menu made by R1DD13 #8209

';

document.body.insertBefore(prodigydiv, document.body.firstChild);
Load earlier comments...
@ineedsomeonetohackprodigymathaccount
ineedsomeonetohackprodigymathaccount commented on Apr 29
what do i do

@ineedsomeonetohackprodigymathaccount
ineedsomeonetohackprodigymathaccount commented on Apr 29
and waht do u use to hac it

@jat354155
jat354155 commented on Apr 29
and can I hire you for my business

you need permission to play after school hours lol

@ineedsomeonetohackprodigymathaccount
ineedsomeonetohackprodigymathaccount commented on Apr 29
huh

@ineedsomeonetohackprodigymathaccount
ineedsomeonetohackprodigymathaccount commented on Apr 29
what u use to hac it

@jat354155
jat354155 commented on Apr 29 •
huh

jobs done
edit: i use Phex, which was deleted long ago

@ineedsomeonetohackprodigymathaccount
ineedsomeonetohackprodigymathaccount commented on Apr 29
ohhh

@ineedsomeonetohackprodigymathaccount
ineedsomeonetohackprodigymathaccount commented on Apr 29
can u send me the link
to phex

@ineedsomeonetohackprodigymathaccount
ineedsomeonetohackprodigymathaccount commented on Apr 29
@jat354155 do u do iready overloaded

@jat354155
jat354155 commented on Apr 29
@jat354155 do u do iready overloaded

ye

@ineedsomeonetohackprodigymathaccount
ineedsomeonetohackprodigymathaccount commented on Apr 29
help me

@jat354155
jat354155 commented on Apr 29 •
@jat354155 do u do iready overloaded

https://github.com/ProdigyPNP/ProdigyMathGameHacking/blob/master/PHEx/build/extension.zip
that's the version i use
edit: extract the files by right clicking, and then drag the extracted files into chrome://extensions/ with dev mode enabled (on chrome lol)

@jat354155
jat354155 commented on Apr 29
@ineedsomeonetohackprodigymathaccount are you reading these still?

@ineedsomeonetohackprodigymathaccount
ineedsomeonetohackprodigymathaccount commented on Apr 29
ok thanks

@jat354155
jat354155 commented on Apr 29
ok thanks

are you enjoying your new hax?

@ineedsomeonetohackprodigymathaccount
ineedsomeonetohackprodigymathaccount commented on Apr 29
yes

@ineedsomeonetohackprodigymathaccount
ineedsomeonetohackprodigymathaccount commented on Apr 29
about the iready

@ineedsomeonetohackprodigymathaccount
ineedsomeonetohackprodigymathaccount commented on Apr 29
what do u use

@jat354155
jat354155 commented on Apr 29 •
what do u use

at the moment nothing, I am currently manually farming minutes and doing a lesson...*each week

@jat354155
jat354155 commented on Apr 29 •
what do u use

assuming that you are in elementary, I would suggest trying i-ready overload, if it works, then keep using it...
when you reach middle school either manually do lessons, or use i-ready overload...

@Kai2dope
Kai2dope commented on Apr 29
How

@mihitala
mihitala commented on May 1
@ineedsomeonetohackprodigymathaccount bruh i wish i could help you but i don't know how to hack it was @HaCkerdontell who did it for me sorry

@mihitala
mihitala commented on May 1
and @Kai2dope if you are an elementary school like me your computer prob doesn't allow you to download the hacking extension cause prob blocked by the admin so you came to the right place just wait until sum1 hacks you and gives you items

@mihitala
mihitala commented on May 2
hold up you need school permission to play prodigy after school hours? WTF!! are u kindergartener lol

@mihitala
mihitala commented on May 2
also sum1 plz make me admin in this program plz?

@eatmytoe
eatmytoe commented on May 11
dude it dont work

@mihitala
mihitala commented on May 11
FR?

@hackfindermod
hackfindermod commented on May 13
@jat354155 do u do iready overloaded

https://github.com/ProdigyPNP/ProdigyMathGameHacking/blob/master/PHEx/build/extension.zip that's the version i use edit: extract the files by right-clicking, and then drag the extracted files into chrome://extensions/ with dev mode enabled (on chrome lol)

how do i extract the files?

@mihitala
mihitala commented on May 19
?

@spelunkyman
spelunkyman commented 12 days ago
you need to copy a line out of the script for say get all hats

@kolerainey

Leave a comment
No file chosen
Attach files by dragging & dropping, selecting or pasting them.
Footer
© 2022 GitHub, Inc.
Footer navigation
Ter

@afkvido
Copy link

afkvido commented Jul 10, 2022

The good old PIXI days

@ShawnC32
Copy link

PHEX still works in Windows 7

@ShawnC32
Copy link

dang it the school blocked my haks

Use a vpn

@afkvido
Copy link

afkvido commented Jul 16, 2022

PHEX still works in Windows 7

PHEx by ProdigyPNP works on chrome and edge.

@XPMUser
Copy link

XPMUser commented Jul 17, 2022

Prodigy works in Windows Vista.
https://getintopc.com/softwares/operating-systems/windows-vista-all-in-one-iso-free-download-1654903/
Prodigy does not work in Windows Vista if the iso file for Windows Vista is from elsewhere!

@XPMUser
Copy link

XPMUser commented Jul 17, 2022

Webgl is required to play Prodigy

@XPMUser
Copy link

XPMUser commented Jul 17, 2022

PHEX works in Windows 7 SP1 using Microsoft Edge

@afkvido
Copy link

afkvido commented Jul 17, 2022

Webgl is required to play Prodigy

yes

@XPMUser
Copy link

XPMUser commented Jul 17, 2022

Prodigy works in Windows Vista SP2, Windows 7 (build 7000 and/or later builds), and later using any web browser.

You can install Mypal for Windows Vista SP2 and Windows 7 beta from usb, cd/dvd and/or external hard drives.

@XPMUser
Copy link

XPMUser commented Jul 17, 2022

Prodigy works in Mypal

@XPMUser
Copy link

XPMUser commented Jul 17, 2022

There is no way to install any extension like PHEX in Mypal.

@XPMUser
Copy link

XPMUser commented Jul 17, 2022

Prodigy3980 is unable to do math

@101Blitz
Copy link

ty

@101Blitz
Copy link

hello

@Dylan690234
Copy link

Bro this is amazing my friends are so confused I love this

@DarkkEldragon
Copy link

LOL

@DarkkEldragon
Copy link

Prodigy3980 is unable to do math

That correct

@DarkkEldragon
Copy link

i m going change my prodigy lol

@westo11
Copy link

westo11 commented Nov 21, 2022

how do you hack?

@adriang2580
Copy link

it dint work

@334475
Copy link

334475 commented Feb 15, 2023

no work

@XPMUser
Copy link

XPMUser commented Mar 13, 2023

Bustin makes me feel good

@XPMUser
Copy link

XPMUser commented Mar 13, 2023

Prodigy works in Windows 7 build 6931 but PHE is not supported in mypal

@XPMUser
Copy link

XPMUser commented Apr 23, 2023

How to add things using slappygig.github.io?

@andrewclark3244
Copy link

I hav hacks that work but I get error 418 - a thing by prodigy to prevent cheats

@andrewclark3244
Copy link

maybe if you search "Glitchquake Networks"

@andrewclark3244
Copy link

Found that google docs that had some good stuff on it

@andrewclark3244
Copy link

But don't share this too much please, I don't want it to get blocked like proxy 1.0 & 2.0.
https://tinyurl.com/3r76dtzd

@carolineq447
Copy link

Can you hack mine?

Emal:2027liug@foothillcds.org
Password: Sugar523

@andrewclark3244
Copy link

use that to walk anywhere on prodigy map but u will need to use it again after a fight or 'map transition"

@andrewclark3244
Copy link

Oh yeah and @carolineq447 i will need ur username if u r not logged in with google but i will try

@andrewclark3244
Copy link

use that to unlock items, but if u unlock the gems like silverchill gems or something than put it inside the slot it will have a error 405 or 408 and it makes u lose the unlocked items and re log in, but if you equip items and a buddy before it has the error the equped ittems will stay there. And if you get a mount it will also stay there until u go into a tower u use a gem to uhnlock

@andrewclark3244
Copy link

oh yeah and the @carolineq447 the glitchquake networks doc is re-opening next school year but as u saw from the links above there is the unlock items and walk anywhere

@andrewclark3244
Copy link

oh, and @carolineq447 i will try logging in and thx for the info

@andrewclark3244
Copy link

but can i change your gear for better health bonus ones?
u can pick 'celestial' 'cosmic' and 'cake' legendary items

@andrewclark3244
Copy link

and i think can set ur level to 100
want me to

@andrewclark3244
Copy link

it'll hav weird stuff when u try to earn battle stars but u will be lvl 100

@andrewclark3244
Copy link

These code actually works

@afkvido
Copy link

afkvido commented Jun 1, 2023

@andrewclark3244 the script you provided is obfuscated code, and does not account for stars breaking.

const player = globalThis.Boot.prototype.game._state._current.user.source;
const level = 100;
const i = level - 2;
const xpConstant = 1.042;
player.data.stars = Math.round((1 - Math.pow(xpConstant, i)) / (1 - xpConstant) * 20 + 10);
player.data.level = level;
player.getLevel = () => {
  return player.data.level;
};
try { player.addWin() } catch (err) {}

above is a proper javascript for setting your level to 100.
you can copy paste that into your js console for level 100.

technical

The code that @andrewclark3244 provided is obfuscated (made unreadable), which already is a sign of untrustworthiness.
Using webcrack, I have found the code:

Deobfuscated
try {
  var level = parseInt(prompt("What grade do you want to be? (x <= 100) "));
} catch (err) {
  var level = NaN;
}
if (!Number.isNaN(level) && Number.isFinite(level)) {
  if (level > 100) {
    alert("Invalid Choice, must be (x <= 100)!");
  } else {
    Boot.prototype.game._state._current.user.source.data.level = level;
    Boot.prototype.game._state._current.user.source.addWin();
  }
}

This code does not account for the stars that a player adjust when the level is adjusted. Why? Not sure. That's how the Prodigy leveling system works.

also, i'm the owner of @ProdigyPNP (which was once the biggest prodigy hack before we shut down), so yes, i know my way around this shit

@carolineq447
Copy link

My user is GraceL47786

@carolineq447
Copy link

and i think can set ur level to 100 want me to

sure

@carolineq447
Copy link

but can i change your gear for better health bonus ones? u can pick 'celestial' 'cosmic' and 'cake' legendary items

yeah

@carolineq447
Copy link

use that to walk anywhere on prodigy map but u will need to use it again after a fight or 'map transition"

I don't have a hacking computer, but can you do it for me?

@carolineq447
Copy link

but can i change your gear for better health bonus ones? u can pick 'celestial' 'cosmic' and 'cake' legendary items

all please

@carolineq447
Copy link

I want to be cool like my friend

@andrewclark3244
Copy link

um, but since the error 418 will swoop in, u will lose all ur stuff except equipped ones

@andrewclark3244
Copy link

and @afkvido with all due respect, MY code doesn't fully work, yes, but you get the bonus of being level 100.

@andrewclark3244
Copy link

but @carolineq447 i gave u a legendary item outfit but im not sure if u will like it or not

@carolineq447
Copy link

Thanks but where's the flower bush mount?

@andrewclark3244
Copy link

flower bush mount?

@andrewclark3244
Copy link

I thought I gave you it but I will try again

@andrewclark3244
Copy link

oh yeah @carolineq447 did you earn hearts to get the mythical epics or did you use a unlock pets hack can you tell me?

@afkvido
Copy link

afkvido commented Jun 5, 2023

and @afkvido with all due respect, MY code doesn't fully work, yes, but you get the bonus of being level 100.

With all due respect to you sir, my code also gets you to level 100.

@andrewclark3244
Copy link

:)

@afkvido
Copy link

afkvido commented Jun 5, 2023

@XPMUser
Yo, no need to post your credentials.
Read this: Prodigy-Hacking/ProdigyMathGameHacking#170

If you put your credentials online, somebody may reset your account, delete your pets/items, access your personal information (i.e. state, grade, IP address, parent's email), change your name/appearance, give negative infinity gold, give glitched pets so that it's impossible to battle, change your password, or even log into your actual email. (List not exhaustive.)

@XPMUser
Copy link

XPMUser commented Jun 5, 2023

Gabriel lives in multiple Prodigy universes.

@andrewclark3244
Copy link

oh yeah @carolineq447 did you earn hearts to get the mythical epics or did you use a unlock pets hack can you tell me?

never mind i found out

@XPMUser
Copy link

XPMUser commented Jun 5, 2023

@XPMUser Yo, no need to post your credentials. Read this: Prodigy-Hacking/ProdigyMathGameHacking#170

If you put your credentials online, somebody may reset your account, delete your pets/items, access your personal information (i.e. state, grade, IP address, parent's email), change your name/appearance, give negative infinity gold, give glitched pets so that it's impossible to battle, change your password, or even log into your actual email. (List not exhaustive.)

Gabriel is free to use to see what completed looks like.

@andrewclark3244
Copy link

@XPMUser what r u talking about

@andrewclark3244
Copy link

r u saying 'Gabriel' has multiple Prodigy accounts?
Please correct me if I am wrong

@XPMUser
Copy link

XPMUser commented Jun 5, 2023

r u saying 'Gabriel' has multiple Prodigy accounts? Please correct me if I am wrong

Gabriel came from Old Prodigy also my wizard name is Gabriel Lifedreamer a.k.a Botanist Gabriel/Gabriel the W12-4RD/Hottie.

@XPMUser
Copy link

XPMUser commented Jun 5, 2023

He wanted a membership on the latest version of Prodigy on the real Prodigy site.

@XPMUser
Copy link

XPMUser commented Jun 5, 2023

https://drive.google.com/file/d/1IQEW0km15KVonqCQZ6gOvVtRxflqUVTl/view?usp=sharing

Download and use the file to get Gabriel with membership on Old Prodigy. xpmuser.github.io

@afkvido
Copy link

afkvido commented Jun 5, 2023

Nice prodigy archive

@XPMUser
Copy link

XPMUser commented Jun 5, 2023

Gabriel is still able to go to Clockwork Town Non-walking Firefly Forest and more removed/replaced/outdated areas.

@XPMUser
Copy link

XPMUser commented Jun 5, 2023

Screenshot 2023-05-14 143759
Screenshot 2023-05-18 051109
Screenshot 2023-05-18 191532
Screenshot 2023-06-03 081635
Screenshot 2023-06-03 082801
Screenshot 2023-06-03 084034
Screenshot 2023-06-03 084307
Screenshot 2023-06-03 084340
Screenshot 2023-06-03 084531
Screenshot 2023-06-03 085638
Screenshot 2023-06-03 132646
Screenshot 2023-06-03 211350
Screenshot 2023-06-03 211552
Screenshot 2023-06-03 212516
Here are Gabriel's Prodigy memories from 2015 and 2023.

@XPMUser
Copy link

XPMUser commented Jun 5, 2023

More than 8 years of Gabriel in Prodigy!

@XPMUser
Copy link

XPMUser commented Jun 5, 2023

I don't have Tech Gobbler but the Dancemaster name is still available in Old Prodigy.

@andrewclark3244
Copy link

Thats a nice account

@XPMUser
Copy link

XPMUser commented Jun 6, 2023

Gabriel has multiple datas

@XPMUser
Copy link

XPMUser commented Jun 6, 2023

  1. Most gold and bounty points (Old Prodigy)
  2. Less gold and bounty points than in old prodigy.

@XPMUser
Copy link

XPMUser commented Jun 6, 2023

The hottie was replaced with the Firedancer in Bonfire Spire.

@XPMUser
Copy link

XPMUser commented Jun 6, 2023

I work with Daboss7173.

@XPMUser
Copy link

XPMUser commented Jun 6, 2023

Type xpmuser.github.io on the address bar and then press enter instead of clicking on it or 'this with' to get Old Prodigy.

@XPMUser
Copy link

XPMUser commented Jun 6, 2023

I wish Gabriel the W12-4RD had membership on real Prodigy not just Old Prodigy.

@XPMUser
Copy link

XPMUser commented Jun 6, 2023

The mod menu emptied the sections in Old Prodigy.

@XPMUser
Copy link

XPMUser commented Jun 6, 2023

Screenshot 2023-06-01 213748
I attempted to send Gabriel to Firefly Docks.

@carolineq447
Copy link

Can someone pls hack me all of the mounts?

@XPMUser
Copy link

XPMUser commented Jun 6, 2023

Can someone pls hack me all of the mounts?

No, because your wizard is not Gabriel Lifedreamer.

@XPMUser
Copy link

XPMUser commented Jun 6, 2023

Screenshot 2023-05-14 143759
Gabriel was in love with Flora.

@andrewclark3244
Copy link

Did Flora return his feelings?

@andrewclark3244
Copy link

Can someone pls hack me all of the mounts?

No, because your wizard is not Gabriel Lifedreamer.

xD

@andrewclark3244
Copy link

that one was kinda funny to me

@andrewclark3244
Copy link

Can someone pls hack me all of the mounts?

@carolineq447, the things disappear after error 418 swoops in so yeah, unless there is a circumstance I don't know about, something like that

@andrewclark3244
Copy link

I like this gist

@andrewclark3244
Copy link

It is full of comments

@andrewclark3244
Copy link

Like how a hedgehog is full of spikes/quills

@afkvido
Copy link

afkvido commented Jun 6, 2023

@XPMUser Enough of this Gabriel shit

@XPMUser
Copy link

XPMUser commented Jun 6, 2023

Daboss7173

@XPMUser
Copy link

XPMUser commented Jun 6, 2023

SC - 12MM is receiving too many emails.

@XPMUser
Copy link

XPMUser commented Jun 6, 2023

@XPMUser Enough of this Gabriel shit

Game Draw

@XPMUser
Copy link

XPMUser commented Jun 6, 2023

Gabriel is happy in Old Prodigy.

@XPMUser
Copy link

XPMUser commented Jun 6, 2023

Screenshot 2023-06-02 160614
Screenshot 2023-06-02 161157
Screenshot 2023-06-02 161915
I changed the names of the zones and Firefly Forest's 15th quest desc.

@afkvido
Copy link

afkvido commented Jun 7, 2023

@XPMUser Please stop with these delusional comments about "Gabriel". God knows nobody cares about "Gabriel", other than maybe you.

@andrewclark3244
Copy link

like, wow.

@andrewclark3244
Copy link

@XPMUser Enough of this Gabriel shit

Game Draw

Game In Zing Again

@andrewclark3244
Copy link

@XPMUser Please stop with these delusional comments about "Gabriel". God knows nobody cares about "Gabriel", other than maybe you.

Touché~

@XPMUser
Copy link

XPMUser commented Jun 7, 2023

The link in my comments that I put don't work when clicking.

@andrewclark3244
Copy link

Ye

@andrewclark3244
Copy link

...
maybe we hav 2 allow popups on our computers

@andrewclark3244
Copy link

for real

@andrewclark3244
Copy link

and u shld play hero wars:
Hero Wars | Online Action RPG

@XPMUser
Copy link

XPMUser commented Jun 8, 2023

@andrewclark3244
Copy link

Nope!

@andrewclark3244
Copy link

But angels don't dream about life...

@andrewclark3244
Copy link

Uploading all layer.jpg…

@andrewclark3244
Copy link

all layer crystal-that is a good one for prodigy i think they should use it

@andrewclark3244
Copy link

I always wonder how old we all are...
But that is kind of like classified information or something

@andrewclark3244
Copy link

Noooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo

@andrewclark3244
Copy link

oneeeeeeeeeeeeeeeeeeeeeeee

@andrewclark3244
Copy link

isreplying

@andrewclark3244
Copy link

...

@andrewclark3244
Copy link

Maybe this gist got old

@adriang2580
Copy link

adriang2580 commented Jun 10, 2023 via email

@XPMUser
Copy link

XPMUser commented Jun 11, 2023

Screenshot 2023-06-10 190232
Screenshot 2023-06-10 190304
Gabriel's houses

@andrewclark3244
Copy link

im jealous

@andrewclark3244
Copy link

My house is a tiny hovel/shack compared to yours

@andrewclark3244
Copy link

Wait @XPMUser is your prodigy a member???

@andrewclark3244
Copy link

#ExtraLargeHouses

@andrewclark3244
Copy link

#TinyShack

@andrewclark3244
Copy link

what the hell andre lily gave me a note that said i like you adrian you were right she was going to tell me at the end of the school year

On Fri, Jun 9, 2023 at 9:53 AM andrewclark3244 @.> wrote: @.* commented on this gist. ------------------------------ Maybe this gist got old — Reply to this email directly, view it on GitHub https://gist.github.com/R1DD1387/0756d2675e21410afd0d7f32382bf63e#gistcomment-4594797 or unsubscribe https://github.com/notifications/unsubscribe-auth/A4QWLY7FWK6JVZJ4UZGXM2DXKNIIBBFKMF2HI4TJMJ2XIZLTSKBKK5TBNR2WLJDHNFZXJJDOMFWWLK3UNBZGKYLEL52HS4DFQKSXMYLMOVS2I5DSOVS2I3TBNVS3W5DIOJSWCZC7OBQXE5DJMNUXAYLOORPWCY3UNF3GS5DZVRZXKYTKMVRXIX3UPFYGLK2HNFZXIQ3PNVWWK3TUUZ2G64DJMNZZDAVEOR4XAZNEM5UXG5FFOZQWY5LFVEYTAMJUHE4TQMJTU52HE2LHM5SXFJTDOJSWC5DF . You are receiving this email because you commented on the thread. Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub .

um... I have no idea who you are, maybe you confused me with someone else. But if you are in Redmond Middle School, then I PrObAbLy know who you are

@andrewclark3244
Copy link

never mind actually, because the adrian i know doesn't even know that I have a github account (i never told him) and my real name is something, but it is NOT andrew

@andrewclark3244
Copy link

#Privacy

@andrewclark3244
Copy link

#ClassifiedInformation

@andrewclark3244
Copy link

#ProtectiveParent

@andrewclark3244
Copy link

#BeansHaveKindOfBeenSpilled

@andrewclark3244
Copy link

oh yeah @XPMUser how did u get the trialmaster garb thing and the cosmic noggin armor and sword and the flower bush mount please tell me if you can/want to

@XPMUser
Copy link

XPMUser commented Jun 12, 2023

oh yeah @XPMUser how did u get the trialmaster garb thing and the cosmic noggin armor and sword and the flower bush mount please tell me if you can/want to

I edited the save file (Old Prodigy).
New Prodigy: Luckiness from the non member chests.

@XPMUser
Copy link

XPMUser commented Jun 12, 2023

Wait @XPMUser is your prodigy a member???

Yes on Old Prodigy and no on the real Prodigy site.

@XPMUser
Copy link

XPMUser commented Jun 12, 2023

I installed more first names for the wizards. https://xpmuser.github.io/oldprodigy/mods/ Pick any version.

@XPMUser
Copy link

XPMUser commented Jun 12, 2023

I put Kim Jong-Un's last name instead of 'Kim' as first name.
'Kim' (first name) coming soon.

@andrewclark3244
Copy link

Good Morning Everyone

@andrewclark3244
Copy link

It is a nice day today

@XPMUser
Copy link

XPMUser commented Jun 13, 2023

https://xpmuser.github.io/oldprodigy/mods/1-11-0/ I included 'Kim' as a boy name.

@XPMUser
Copy link

XPMUser commented Jun 13, 2023

https://xpmuser.github.io/oldprodigy/mods/1-11-0/ You might find bots with the missing first names included for example: 'Boris'.

@XPMUser
Copy link

XPMUser commented Jun 13, 2023

Boris is Caillou's Dad's first name.

@XPMUser
Copy link

XPMUser commented Jun 13, 2023

I got the Pirate name from Pirate Isle (Barnacle Cove).
Screenshot 2023-06-13 142507
The word 'beard' is not included because the name with that is already included.

@XPMUser
Copy link

XPMUser commented Jun 13, 2023

The year is still 2023 not 2015, but it will be 2015 in North Korea soon.

@andrewclark3244
Copy link

Pirate BlAcKbEaRd

@XPMUser
Copy link

XPMUser commented Jun 14, 2023

Gabriel with the trialmaster name is coming soon.

@andrewclark3244
Copy link

GaBrIeL tHe TrIaLmAsTeR
u mean like that?

@andrewclark3244
Copy link

Evening y'all

@XPMUser
Copy link

XPMUser commented Jun 15, 2023

GaBrIeL tHe TrIaLmAsTeR u mean like that?

Yes

@andrewclark3244
Copy link

Wait you woke up @ 2 AM???

@andrewclark3244
Copy link

Because I live in the United States so yeah

@XPMUser
Copy link

XPMUser commented Jun 15, 2023

Gabriel can explore more universes.

@andrewclark3244
Copy link

@andrewclark3244
Copy link

If he can explore more universes

@andrewclark3244
Copy link

@andrewclark3244
Copy link

I wish there was a pose/movement like that in prodigy...

@andrewclark3244
Copy link

And no one can judge me for those posts~

@andrewclark3244
Copy link

Because they are just too good!

@andrewclark3244
Copy link

(I think)

@XPMUser
Copy link

XPMUser commented Jun 16, 2023

Gabriel still just appears in Prodigy and/or in dreamlands.

@XPMUser
Copy link

XPMUser commented Jun 16, 2023

Goal: Pretending to be greedy for the right reasons without failures or worsening.

@andrewclark3244
Copy link

Ye

@andrewclark3244
Copy link

I haven't visited this gist in a long time!

@andrewclark3244
Copy link

But i'm back

@andrewclark3244
Copy link

Yayyy!

@XPMUser
Copy link

XPMUser commented Jun 21, 2023

Screenshot 2023-06-18 071426

@XPMUser
Copy link

XPMUser commented Jun 21, 2023

Screenshot_20230620_112835

@XPMUser
Copy link

XPMUser commented Jun 21, 2023

Screenshot 2023-06-18 055442
Screenshot 2023-06-18 055450
https://xpmuser.github.io/oldprodigy/mods/1-11-0/ Walmart (The Machine Shop) sells Trialmaster's Gear except for the wand due to it being a prize.

@XPMUser
Copy link

XPMUser commented Jun 21, 2023

Screenshot 2023-06-21 120306
I'm stuck

@XPMUser
Copy link

XPMUser commented Jun 21, 2023

I can't even click on the map, but I put an apology beside the chair.

@andrewclark3244
Copy link

The McDonalds pic was funny

@XPMUser
Copy link

XPMUser commented Jun 22, 2023

The McDonalds pic was funny

That's because I renamed 'The Machine Shop' to McDonalds. https://xpmuser.github.io/oldprodigy/mods/1-3-1/

@XPMUser
Copy link

XPMUser commented Jun 22, 2023

Imagine getting Robot Gears as happy meals.

@XPMUser
Copy link

XPMUser commented Jun 22, 2023

Screenshot 2023-06-21 121449
Screenshot 2023-06-21 121828
Screenshot 2023-06-21 122152
I found unused stuff.
Screenshot 2023-06-09 185139

@andrewclark3244
Copy link

Ooer

@XPMUser
Copy link

XPMUser commented Jun 28, 2023

Screenshot 2023-06-27 191828
I saw this popup in 2017.

@andrewclark3244
Copy link

...

@XPMUser
Copy link

XPMUser commented Jul 4, 2023

Screenshot 2023-07-03 134553
Gabriel has a crush on 1 of the 1.11.0 wizard bots.

@XPMUser
Copy link

XPMUser commented Jul 4, 2023

@XPMUser
Copy link

XPMUser commented Jul 4, 2023

Screenshot 2023-07-03 114326
Peeko in Firefly Outfitters

@XPMUser
Copy link

XPMUser commented Jul 4, 2023

Screenshot 2023-07-03 093024
Gabriel: "Hey, who turned out the lights?"

@XPMUser
Copy link

XPMUser commented Jul 4, 2023

@andrewclark3244
Copy link

HmMmMmMM

@XPMUser
Copy link

XPMUser commented Jul 26, 2023

Screenshot 2023-07-25 063632
Bobby Fancywoman in 2013-2017 style except for some differences

@XPMUser
Copy link

XPMUser commented Jul 26, 2023

Screenshot 2023-07-25 130440
Screenshot 2023-07-25 153149
Level 100 in earlier than version 1.11.0

@XPMUser
Copy link

XPMUser commented Jul 26, 2023

Wait @XPMUser is your prodigy a member???

Yes

@XPMUser
Copy link

XPMUser commented Jul 26, 2023

Screenshot 2023-07-24 213158
I can't get this math problem with the weird stuff on it on new Prodigy.

@XPMUser
Copy link

XPMUser commented Aug 8, 2023

PIXI.game.prodigy.debugMisc is unavailable

@maddog6464
Copy link

lol

@XPMUser
Copy link

XPMUser commented Aug 29, 2023

Phaser.GAMES[0].prodigy works in old prodigy.

@andrewclark3244
Copy link

Nice

@Ao28th28
Copy link

Ao28th28 commented Oct 4, 2023

VirtualBox_Windows Vista 2006_17_09_2023_10_47_29
Prodigy in Windows Vista

@andrewclark3244
Copy link

ah
oh yeah hello
havent been here in a while
still working on the prodigy legacy?

@Ao28th28
Copy link

Ao28th28 commented Oct 6, 2023

ah oh yeah hello havent been here in a while still working on the prodigy legacy?

Yes

@Ao28th28
Copy link

Ao28th28 commented Oct 6, 2023

1.8.9 was supposed to be a beta testing version back in early 2015.

@Ao28th28
Copy link

Ao28th28 commented Oct 6, 2023

Screenshot 2023-10-06 052653
Bobby Fancywoman in 2015

@andrewclark3244
Copy link

interesting
is the star and moon thing the world symbol
Astrallum

@Ao28th28
Copy link

Ao28th28 commented Oct 8, 2023

interesting is the star and moon thing the world symbol Astrallum

Yes and it's astral

@FortniteKIDPRO
Copy link

i
what to be a membre show me ohw to be a memmbre pleas

@andrewclark3244
Copy link

@andrewclark3244
Copy link

anyway i had a piece of code that suppposedly gets you member ship but it doesn't work sorry
you can go to github.com
and search something like prodigy hack tho

@andrewclark3244
Copy link

whoops i 4got u already on github

@FortniteKIDPRO
Copy link

FortniteKIDPRO commented Nov 3, 2023 via email

@andrewclark3244
Copy link

this is andrewclark3244, superhacker of prodigy!!

@andrewclark3244
Copy link

:))))))))))))))))))))))

@liamisagod11111
Copy link

lol

@andrewclark3244
Copy link

im back

@andrewclark3244
Copy link

i hav full titan shard armor :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment