Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* USE AT YOUR OWN RISK! */
- /* This is for 'educational purposes' only! */
- /* MADE BY CAM3R0N */
- /* -- ALL FUNCTIONS --
- - Close()
- - FreeMembership()
- - TrialmasterGear()
- - GiveMoney()
- - SetLevel()
- - LevelPets()
- - SetLocation()
- - SetNickname()
- - GetAllItems()
- - GetAllCurrency()
- - GetAllFollow()
- */
- function Close() {
- menu.remove();
- menuStyle.remove();
- }
- setTimeout("close", 3000);
- function FreeMembership() {
- PIXI.game.prodigy.player.tt = true;
- }
- function TrialmasterGear() {
- PIXI.game.prodigy.player.backpack.data.outfit.push({"N":999999, "ID":24});
- PIXI.game.prodigy.player.backpack.data.boots.push({"N":999999, "ID":18});
- PIXI.game.prodigy.player.backpack.data.hat.push({"N":999999, "ID":23});
- PIXI.game.prodigy.player.backpack.data.weapon.push({"N":1, "ID":47});
- }
- function GiveMoney() {
- PIXI.game.prodigy.debugMisc.smallLoan(prompt("How much money do you want? (Warning! If you put an insane amount you run the risk of a ban!)"));
- }
- function SetLevel() {
- PIXI.game.prodigy.data.level = prompt("What level do you want? (Max: 100)");
- }
- function LevelPets() {
- for (let PetLoopTest = 0; PetLoopTest < PIXI.game.prodigy.player.kennel.data.length; PetLoopTest++) {
- PIXI.game.prodigy.player.kennel.data[PetLoopTest].level = 100
- };
- }
- function SetLocation() {
- PIXI.game.prodigy.player.locationSelectionType = prompt("What will your location string be? (e.i your kitchen making a sandwhich)");
- }
- function SetNickname() {
- PIXI.game.state.states.Boot._gameData.nickname[PIXI.game.prodigy.name.nickname] = prompt("What do your want your clientside nickname to be? {first} {last}");
- }
- 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": Infinity}
- }
- }
- function GetAllCurrency() {
- 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": 9e+9999}
- }
- }
- function GetAllFollow() {
- PIXI.game.prodigy.player.backpack.data.follow = []
- 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": 9e+9999}
- }
- }
- function GetAllPets() {
- PIXI.game.prodigy.debugMisc.getAllPets();
- }
- var menuStyle = document.createElement("style");
- menuStyle.innerHTML = '.menuDiv {width: 200px;height: 535px;background-color: rgba(8, 8, 8, 0.7);position: absolute;z-index: 23423;margin: 5px;text-decoration: none;border-radius: 5px;line-height: 1;}.menuDiv p {color: white;text-align: center;font-size: 14px;font-weight: bold;margin-top: 10px;}.menuDiv a {background-color: rgb(215, 10, 10);border-radius: 28px;display: inline-block;color: whitesmoke;font-family: Arial;font-size: 11px;padding: 8px 15px;text-decoration: none;margin: 2px 8px;}';
- var menu = document.createElement("div");
- menu.setAttribute("class", "menuDiv")
- menu.innerHTML = '<p>DEV MENU</p><a href="#" onclick="Close();return false;">Close</a><br><a href="#" onclick="FreeMembership();return false;">Free Membership</a><br><a href="#" onclick="PIXI.game.prodigy.debugMisc.smallLoan(1000000);return false;">1 Mill Coins</a><br><a href="#" onclick="PIXI.game.prodigy.debugMisc.getAllPets();return false;">Get All Pets</a><br><a href="#" onclick="PIXI.game.prodigy.player.backpack.data.item.push({"N":Infinity,"ID":130});return false;">Infinite Wheel Spins</a><br><a href="#" onclick="PIXI.game.prodigy.debugMisc.easyMode(1);return false;">Easy Mode</a><br><a href="#" onclick="SetTeleport(1);return false;">Enable Mouse TP</a><br><a href="#" onclick="SetTeleport(0);return false;">Disable Mouse TP</a><br><a href="#" onclick="FreeAtSchool();return false;">Unlock Zones</a><br><a href="#" onclick="TrialmastersGear();return false;">Trialmaster Gear</a><br><a href="#" onclick="levelUpPets();return false;">Level Up Pets</a><br><a href="#" onclick="setLocation();return false;">Set Location</a><br><a href="#" onclick="PIXI.game.state.states.Boot._gameData.nickname[PIXI.game.prodigy.player.name.nickname] = prompt("Set your clientside nickname (nobody else can see it but you) here.", "{first} {last}, but you can call me Einstein");return false;">Set Nickname</a><br><a href="#" onclick="PIXI.game.prodigy.player.appearance._name.nickname=7;return false;">W12-4RD Nickname</a><br><a href="#" onclick="getallFollow();return false;">Get All Buddies</a><br><a href="#" onclick="getallItem();return false;">Get All Items</a><br><a href="#" onclick="getallCurrency();return false;">Get All Currencies</a><br><p>BY CAM3R0N</p>';
- document.body.insertBefore(menu, document.body.firstChild);
- document.body.insertBefore(menuStyle, document.body.firstChild);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement