├── .github ├── ANNOUNCEMENT.md ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug.yml │ ├── config.yml │ ├── hack.yml │ ├── other.yml │ └── security.yml ├── PTB.png ├── ProdigyLoaderPNP.png ├── SECURITY.md ├── dependabot.yml ├── fixedlogo.png ├── plainlogo.png ├── ppnp.png ├── pull_request_template.md └── workflows │ ├── Autorelease.yml │ ├── BetterDependabot.yml │ ├── cheatGUI-webpack.yml │ ├── codeql-analysis.yml │ └── dependency-review.yml ├── .gitignore ├── .vscode ├── PMGH.code-snippets └── settings.json ├── CITATION.cff ├── LICENSE.txt ├── PHEx ├── README.md ├── build.mjs ├── build.sh ├── build │ ├── default │ ├── extension.crx │ ├── extension.xpi │ └── extension.zip ├── firefox │ ├── assets │ │ ├── x128.png │ │ ├── x16.png │ │ └── x48.png │ ├── background.js │ ├── disableIntegrity.js │ ├── manifest.json │ ├── popup.html │ ├── popup.js │ └── swal │ │ ├── SOURCE.txt │ │ ├── sweetalert2.all.min.js │ │ └── sweetalert2.min.css ├── package.json ├── src │ ├── assets │ │ ├── x128.png │ │ ├── x16.png │ │ └── x48.png │ ├── block.json │ ├── disableIntegrity.js │ ├── manifest.json │ ├── popup.html │ ├── popup.js │ └── swal │ │ └── sweetalert2.all.min.js └── status.json ├── README.md ├── cheatGUI ├── .eslintrc.json ├── .npmrc ├── README.md ├── babel.config.js ├── dist │ └── bundle.js ├── hot-reload.mjs ├── loader.cjs ├── package.json ├── postcss.config.js ├── src │ ├── assets │ │ ├── academy.png │ │ ├── archives.png │ │ ├── bonfire_spire.png │ │ ├── crystal_caverns.png │ │ ├── darktower.png │ │ ├── dyno.png │ │ ├── earthtower.png │ │ ├── elemental_guardian.png │ │ ├── forest.png │ │ ├── house.png │ │ ├── lamplight.png │ │ ├── shipwreck_shore.png │ │ ├── shiverchill.png │ │ ├── skywatch.png │ │ ├── tower_town.png │ │ └── toyzone.png │ ├── class │ │ ├── Hack.ts │ │ └── Toggler.ts │ ├── declarations.d.ts │ ├── hacks │ │ ├── battle.ts │ │ ├── beta.ts │ │ ├── inventory.ts │ │ ├── location.ts │ │ ├── minigame.ts │ │ ├── misc.ts │ │ ├── patched.ts │ │ ├── pets.ts │ │ ├── player.ts │ │ └── utility.ts │ ├── index.ts │ ├── style.scss │ └── utils │ │ ├── chat.ts │ │ ├── fps.ts │ │ ├── hackify.ts │ │ ├── keybinds.ts │ │ ├── popupCloser.ts │ │ ├── status.ts │ │ ├── swal.ts │ │ ├── util.ts │ │ └── wasd.ts ├── statusmessage.json ├── tsconfig.json └── webpack.config.js ├── docs ├── classes │ ├── _player_d_.player.md │ └── _player_d_.playerdata.md ├── globals.md ├── interfaces │ ├── _game_d_.game.md │ ├── _pixi_d_.pixi.md │ ├── _player_d_.playername.md │ └── _prodigy_d_.prodigy.md └── modules │ ├── _game_d_.md │ ├── _item_d_.md │ ├── _pixi_d_.md │ ├── _player_d_.md │ ├── _prodigy_d_.md │ ├── _test_.md │ └── _util_d_.md ├── meta ├── CONTRIBUTORS.md ├── PRIVACY_POLICY.md ├── TIMELINE.md ├── YOUTUBE_ATTRIBUTION.md ├── manual │ ├── BRAVE.md │ ├── CHROME.md │ ├── EDGE.md │ ├── FIREFOX.md │ └── OPERA.md ├── prodigyerrors │ ├── CONTRIBUTING.md │ ├── README.md │ ├── http20.md │ ├── http36.md │ ├── http403.md │ ├── http404.md │ ├── http418.md │ ├── http500.md │ ├── http72.md │ ├── http84.md │ └── inactivityKick.md ├── webstores │ ├── BRAVE.md │ ├── CHROME.md │ ├── EDGE.md │ ├── FIREFOX.md │ └── OPERA.md └── wiki │ ├── QUICKSTART.md │ ├── README.md │ └── UPDATING.md └── typings ├── backpack.d.ts ├── debugMisc.d.ts ├── game.d.ts ├── gameContainer.d.ts ├── gameData.d.ts ├── item.d.ts ├── open.d.ts ├── package.json ├── pet.d.ts ├── pixi.d.ts ├── player.d.ts ├── prodigy.d.ts ├── test.ts └── util.d.ts /.github/ANNOUNCEMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/.github/ANNOUNCEMENT.md -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: true 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/hack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/.github/ISSUE_TEMPLATE/hack.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/other.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/.github/ISSUE_TEMPLATE/other.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/security.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/.github/ISSUE_TEMPLATE/security.yml -------------------------------------------------------------------------------- /.github/PTB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/.github/PTB.png -------------------------------------------------------------------------------- /.github/ProdigyLoaderPNP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/.github/ProdigyLoaderPNP.png -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/fixedlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/.github/fixedlogo.png -------------------------------------------------------------------------------- /.github/plainlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/.github/plainlogo.png -------------------------------------------------------------------------------- /.github/ppnp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/.github/ppnp.png -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/Autorelease.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/.github/workflows/Autorelease.yml -------------------------------------------------------------------------------- /.github/workflows/BetterDependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/.github/workflows/BetterDependabot.yml -------------------------------------------------------------------------------- /.github/workflows/cheatGUI-webpack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/.github/workflows/cheatGUI-webpack.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/dependency-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/.github/workflows/dependency-review.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/PMGH.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/.vscode/PMGH.code-snippets -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "git.ignoreLimitWarning": true 3 | } -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/CITATION.cff -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /PHEx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/PHEx/README.md -------------------------------------------------------------------------------- /PHEx/build.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/PHEx/build.mjs -------------------------------------------------------------------------------- /PHEx/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/PHEx/build.sh -------------------------------------------------------------------------------- /PHEx/build/default: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /PHEx/build/extension.crx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/PHEx/build/extension.crx -------------------------------------------------------------------------------- /PHEx/build/extension.xpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/PHEx/build/extension.xpi -------------------------------------------------------------------------------- /PHEx/build/extension.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/PHEx/build/extension.zip -------------------------------------------------------------------------------- /PHEx/firefox/assets/x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/PHEx/firefox/assets/x128.png -------------------------------------------------------------------------------- /PHEx/firefox/assets/x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/PHEx/firefox/assets/x16.png -------------------------------------------------------------------------------- /PHEx/firefox/assets/x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/PHEx/firefox/assets/x48.png -------------------------------------------------------------------------------- /PHEx/firefox/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/PHEx/firefox/background.js -------------------------------------------------------------------------------- /PHEx/firefox/disableIntegrity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/PHEx/firefox/disableIntegrity.js -------------------------------------------------------------------------------- /PHEx/firefox/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/PHEx/firefox/manifest.json -------------------------------------------------------------------------------- /PHEx/firefox/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/PHEx/firefox/popup.html -------------------------------------------------------------------------------- /PHEx/firefox/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/PHEx/firefox/popup.js -------------------------------------------------------------------------------- /PHEx/firefox/swal/SOURCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/PHEx/firefox/swal/SOURCE.txt -------------------------------------------------------------------------------- /PHEx/firefox/swal/sweetalert2.all.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/PHEx/firefox/swal/sweetalert2.all.min.js -------------------------------------------------------------------------------- /PHEx/firefox/swal/sweetalert2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/PHEx/firefox/swal/sweetalert2.min.css -------------------------------------------------------------------------------- /PHEx/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/PHEx/package.json -------------------------------------------------------------------------------- /PHEx/src/assets/x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/PHEx/src/assets/x128.png -------------------------------------------------------------------------------- /PHEx/src/assets/x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/PHEx/src/assets/x16.png -------------------------------------------------------------------------------- /PHEx/src/assets/x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/PHEx/src/assets/x48.png -------------------------------------------------------------------------------- /PHEx/src/block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/PHEx/src/block.json -------------------------------------------------------------------------------- /PHEx/src/disableIntegrity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/PHEx/src/disableIntegrity.js -------------------------------------------------------------------------------- /PHEx/src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/PHEx/src/manifest.json -------------------------------------------------------------------------------- /PHEx/src/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/PHEx/src/popup.html -------------------------------------------------------------------------------- /PHEx/src/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/PHEx/src/popup.js -------------------------------------------------------------------------------- /PHEx/src/swal/sweetalert2.all.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/PHEx/src/swal/sweetalert2.all.min.js -------------------------------------------------------------------------------- /PHEx/status.json: -------------------------------------------------------------------------------- 1 | { 2 | "offline": false 3 | } 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/README.md -------------------------------------------------------------------------------- /cheatGUI/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/cheatGUI/.eslintrc.json -------------------------------------------------------------------------------- /cheatGUI/.npmrc: -------------------------------------------------------------------------------- 1 | auto-install-peers=true -------------------------------------------------------------------------------- /cheatGUI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/cheatGUI/README.md -------------------------------------------------------------------------------- /cheatGUI/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/cheatGUI/babel.config.js -------------------------------------------------------------------------------- /cheatGUI/dist/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/cheatGUI/dist/bundle.js -------------------------------------------------------------------------------- /cheatGUI/hot-reload.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/cheatGUI/hot-reload.mjs -------------------------------------------------------------------------------- /cheatGUI/loader.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/cheatGUI/loader.cjs -------------------------------------------------------------------------------- /cheatGUI/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/cheatGUI/package.json -------------------------------------------------------------------------------- /cheatGUI/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/cheatGUI/postcss.config.js -------------------------------------------------------------------------------- /cheatGUI/src/assets/academy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/cheatGUI/src/assets/academy.png -------------------------------------------------------------------------------- /cheatGUI/src/assets/archives.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/cheatGUI/src/assets/archives.png -------------------------------------------------------------------------------- /cheatGUI/src/assets/bonfire_spire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/cheatGUI/src/assets/bonfire_spire.png -------------------------------------------------------------------------------- /cheatGUI/src/assets/crystal_caverns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/cheatGUI/src/assets/crystal_caverns.png -------------------------------------------------------------------------------- /cheatGUI/src/assets/darktower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/cheatGUI/src/assets/darktower.png -------------------------------------------------------------------------------- /cheatGUI/src/assets/dyno.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/cheatGUI/src/assets/dyno.png -------------------------------------------------------------------------------- /cheatGUI/src/assets/earthtower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/cheatGUI/src/assets/earthtower.png -------------------------------------------------------------------------------- /cheatGUI/src/assets/elemental_guardian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/cheatGUI/src/assets/elemental_guardian.png -------------------------------------------------------------------------------- /cheatGUI/src/assets/forest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/cheatGUI/src/assets/forest.png -------------------------------------------------------------------------------- /cheatGUI/src/assets/house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/cheatGUI/src/assets/house.png -------------------------------------------------------------------------------- /cheatGUI/src/assets/lamplight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/cheatGUI/src/assets/lamplight.png -------------------------------------------------------------------------------- /cheatGUI/src/assets/shipwreck_shore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/cheatGUI/src/assets/shipwreck_shore.png -------------------------------------------------------------------------------- /cheatGUI/src/assets/shiverchill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/cheatGUI/src/assets/shiverchill.png -------------------------------------------------------------------------------- /cheatGUI/src/assets/skywatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/cheatGUI/src/assets/skywatch.png -------------------------------------------------------------------------------- /cheatGUI/src/assets/tower_town.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/cheatGUI/src/assets/tower_town.png -------------------------------------------------------------------------------- /cheatGUI/src/assets/toyzone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/cheatGUI/src/assets/toyzone.png -------------------------------------------------------------------------------- /cheatGUI/src/class/Hack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/cheatGUI/src/class/Hack.ts -------------------------------------------------------------------------------- /cheatGUI/src/class/Toggler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/cheatGUI/src/class/Toggler.ts -------------------------------------------------------------------------------- /cheatGUI/src/declarations.d.ts: -------------------------------------------------------------------------------- 1 | import {} from "../../typings/pixi"; -------------------------------------------------------------------------------- /cheatGUI/src/hacks/battle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/cheatGUI/src/hacks/battle.ts -------------------------------------------------------------------------------- /cheatGUI/src/hacks/beta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/cheatGUI/src/hacks/beta.ts -------------------------------------------------------------------------------- /cheatGUI/src/hacks/inventory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/cheatGUI/src/hacks/inventory.ts -------------------------------------------------------------------------------- /cheatGUI/src/hacks/location.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/cheatGUI/src/hacks/location.ts -------------------------------------------------------------------------------- /cheatGUI/src/hacks/minigame.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/cheatGUI/src/hacks/minigame.ts -------------------------------------------------------------------------------- /cheatGUI/src/hacks/misc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/cheatGUI/src/hacks/misc.ts -------------------------------------------------------------------------------- /cheatGUI/src/hacks/patched.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/cheatGUI/src/hacks/patched.ts -------------------------------------------------------------------------------- /cheatGUI/src/hacks/pets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/cheatGUI/src/hacks/pets.ts -------------------------------------------------------------------------------- /cheatGUI/src/hacks/player.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/cheatGUI/src/hacks/player.ts -------------------------------------------------------------------------------- /cheatGUI/src/hacks/utility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/cheatGUI/src/hacks/utility.ts -------------------------------------------------------------------------------- /cheatGUI/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/cheatGUI/src/index.ts -------------------------------------------------------------------------------- /cheatGUI/src/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/cheatGUI/src/style.scss -------------------------------------------------------------------------------- /cheatGUI/src/utils/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/cheatGUI/src/utils/chat.ts -------------------------------------------------------------------------------- /cheatGUI/src/utils/fps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/cheatGUI/src/utils/fps.ts -------------------------------------------------------------------------------- /cheatGUI/src/utils/hackify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/cheatGUI/src/utils/hackify.ts -------------------------------------------------------------------------------- /cheatGUI/src/utils/keybinds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/cheatGUI/src/utils/keybinds.ts -------------------------------------------------------------------------------- /cheatGUI/src/utils/popupCloser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/cheatGUI/src/utils/popupCloser.ts -------------------------------------------------------------------------------- /cheatGUI/src/utils/status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/cheatGUI/src/utils/status.ts -------------------------------------------------------------------------------- /cheatGUI/src/utils/swal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/cheatGUI/src/utils/swal.ts -------------------------------------------------------------------------------- /cheatGUI/src/utils/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/cheatGUI/src/utils/util.ts -------------------------------------------------------------------------------- /cheatGUI/src/utils/wasd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/cheatGUI/src/utils/wasd.ts -------------------------------------------------------------------------------- /cheatGUI/statusmessage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/cheatGUI/statusmessage.json -------------------------------------------------------------------------------- /cheatGUI/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/cheatGUI/tsconfig.json -------------------------------------------------------------------------------- /cheatGUI/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/cheatGUI/webpack.config.js -------------------------------------------------------------------------------- /docs/classes/_player_d_.player.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/docs/classes/_player_d_.player.md -------------------------------------------------------------------------------- /docs/classes/_player_d_.playerdata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/docs/classes/_player_d_.playerdata.md -------------------------------------------------------------------------------- /docs/globals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/docs/globals.md -------------------------------------------------------------------------------- /docs/interfaces/_game_d_.game.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/docs/interfaces/_game_d_.game.md -------------------------------------------------------------------------------- /docs/interfaces/_pixi_d_.pixi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/docs/interfaces/_pixi_d_.pixi.md -------------------------------------------------------------------------------- /docs/interfaces/_player_d_.playername.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/docs/interfaces/_player_d_.playername.md -------------------------------------------------------------------------------- /docs/interfaces/_prodigy_d_.prodigy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/docs/interfaces/_prodigy_d_.prodigy.md -------------------------------------------------------------------------------- /docs/modules/_game_d_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/docs/modules/_game_d_.md -------------------------------------------------------------------------------- /docs/modules/_item_d_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/docs/modules/_item_d_.md -------------------------------------------------------------------------------- /docs/modules/_pixi_d_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/docs/modules/_pixi_d_.md -------------------------------------------------------------------------------- /docs/modules/_player_d_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/docs/modules/_player_d_.md -------------------------------------------------------------------------------- /docs/modules/_prodigy_d_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/docs/modules/_prodigy_d_.md -------------------------------------------------------------------------------- /docs/modules/_test_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/docs/modules/_test_.md -------------------------------------------------------------------------------- /docs/modules/_util_d_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/docs/modules/_util_d_.md -------------------------------------------------------------------------------- /meta/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/meta/CONTRIBUTORS.md -------------------------------------------------------------------------------- /meta/PRIVACY_POLICY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/meta/PRIVACY_POLICY.md -------------------------------------------------------------------------------- /meta/TIMELINE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/meta/TIMELINE.md -------------------------------------------------------------------------------- /meta/YOUTUBE_ATTRIBUTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/meta/YOUTUBE_ATTRIBUTION.md -------------------------------------------------------------------------------- /meta/manual/BRAVE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/meta/manual/BRAVE.md -------------------------------------------------------------------------------- /meta/manual/CHROME.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/meta/manual/CHROME.md -------------------------------------------------------------------------------- /meta/manual/EDGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/meta/manual/EDGE.md -------------------------------------------------------------------------------- /meta/manual/FIREFOX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/meta/manual/FIREFOX.md -------------------------------------------------------------------------------- /meta/manual/OPERA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/meta/manual/OPERA.md -------------------------------------------------------------------------------- /meta/prodigyerrors/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/meta/prodigyerrors/CONTRIBUTING.md -------------------------------------------------------------------------------- /meta/prodigyerrors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/meta/prodigyerrors/README.md -------------------------------------------------------------------------------- /meta/prodigyerrors/http20.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/meta/prodigyerrors/http20.md -------------------------------------------------------------------------------- /meta/prodigyerrors/http36.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/meta/prodigyerrors/http36.md -------------------------------------------------------------------------------- /meta/prodigyerrors/http403.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/meta/prodigyerrors/http403.md -------------------------------------------------------------------------------- /meta/prodigyerrors/http404.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/meta/prodigyerrors/http404.md -------------------------------------------------------------------------------- /meta/prodigyerrors/http418.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/meta/prodigyerrors/http418.md -------------------------------------------------------------------------------- /meta/prodigyerrors/http500.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/meta/prodigyerrors/http500.md -------------------------------------------------------------------------------- /meta/prodigyerrors/http72.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/meta/prodigyerrors/http72.md -------------------------------------------------------------------------------- /meta/prodigyerrors/http84.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/meta/prodigyerrors/http84.md -------------------------------------------------------------------------------- /meta/prodigyerrors/inactivityKick.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/meta/prodigyerrors/inactivityKick.md -------------------------------------------------------------------------------- /meta/webstores/BRAVE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/meta/webstores/BRAVE.md -------------------------------------------------------------------------------- /meta/webstores/CHROME.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/meta/webstores/CHROME.md -------------------------------------------------------------------------------- /meta/webstores/EDGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/meta/webstores/EDGE.md -------------------------------------------------------------------------------- /meta/webstores/FIREFOX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/meta/webstores/FIREFOX.md -------------------------------------------------------------------------------- /meta/webstores/OPERA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/meta/webstores/OPERA.md -------------------------------------------------------------------------------- /meta/wiki/QUICKSTART.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/meta/wiki/QUICKSTART.md -------------------------------------------------------------------------------- /meta/wiki/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/meta/wiki/README.md -------------------------------------------------------------------------------- /meta/wiki/UPDATING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/meta/wiki/UPDATING.md -------------------------------------------------------------------------------- /typings/backpack.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/typings/backpack.d.ts -------------------------------------------------------------------------------- /typings/debugMisc.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/typings/debugMisc.d.ts -------------------------------------------------------------------------------- /typings/game.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/typings/game.d.ts -------------------------------------------------------------------------------- /typings/gameContainer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/typings/gameContainer.d.ts -------------------------------------------------------------------------------- /typings/gameData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/typings/gameData.d.ts -------------------------------------------------------------------------------- /typings/item.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/typings/item.d.ts -------------------------------------------------------------------------------- /typings/open.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/typings/open.d.ts -------------------------------------------------------------------------------- /typings/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/typings/package.json -------------------------------------------------------------------------------- /typings/pet.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/typings/pet.d.ts -------------------------------------------------------------------------------- /typings/pixi.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/typings/pixi.d.ts -------------------------------------------------------------------------------- /typings/player.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/typings/player.d.ts -------------------------------------------------------------------------------- /typings/prodigy.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigyPNP/ProdigyMathGameHacking/HEAD/typings/prodigy.d.ts -------------------------------------------------------------------------------- /typings/test.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /typings/util.d.ts: -------------------------------------------------------------------------------- 1 | export type TODO = any; --------------------------------------------------------------------------------