Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 19 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,14 @@



## How to install

See our [Quickstart Guide](https://github.com/ProdigyPNP/ProdigyMathGameHacking/blob/master/meta/wiki/QUICKSTART.md).
## [How to hack Prodigy](https://github.com/ProdigyPNP/ProdigyMathGameHacking/blob/master/meta/wiki/QUICKSTART.md)

Read our [Quickstart Guide](https://github.com/ProdigyPNP/ProdigyMathGameHacking/blob/master/meta/wiki/QUICKSTART.md).




<br>

## Info

Expand All @@ -57,7 +57,8 @@ We're not trying to break the game because we're evil. We wanted to help Prodigy
Because of that, we're publicly showing hacks! To be honest, it's just fun ;)

All of our hacks are open source, and free. No paywalls, no ads, and no viruses.</p>
</details>

<br></details>


<p/>
Expand All @@ -68,7 +69,7 @@ All of our hacks are open source, and free. No paywalls, no ads, and no viruses.
<p>We're not going to hack your account for you for security reasons.
Giving someone else your credentials allows them to mess around on your account.
Even worse, anyone with your credentials could potentially log into your actual email.</p>
</details>
<br></details>


<p/>
Expand All @@ -84,7 +85,7 @@ It's impossible to prove with absolute certainty to anyone reading this that we

<p><i>But what if you steal my personal info?</i>
We do not want your personal info. Please do not share it. Even if we wanted to, there's not much we could do with it. "Wow, John Doe is in 5th grade and has mastered fractions!"</p>
</details>
<br></details>


<p/>
Expand All @@ -93,7 +94,7 @@ We do not want your personal info. Please do not share it. Even if we wanted to,
<details>
<summary><b>How do I know what code is running in the hacks?</b></summary><br>
<p>Our code is open source, and you're always free to read any of it. If you have trouble understanding what a certain thing does, feel free to ask any of the administrators on our Discord.</p>
</details>
<br></details>


<p/>
Expand All @@ -102,9 +103,9 @@ We do not want your personal info. Please do not share it. Even if we wanted to,
<details>
<summary><b>Legal</b></summary><br>
<p>If you have any legal problems to us, please email <a href = "mailto:[email protected]">[email protected]</a></p>
</details>

<br></details>

<br>



Expand All @@ -118,16 +119,24 @@ We are not liable for any damage to your accounts, see our [license](../../blob/

**All hacks are licensed under the Mozilla Public License (MPL) V2.0, unless stated otherwise with a separate license.**


<br>



## [The Team](../../blob/master/meta/CONTRIBUTORS.md)

ProdigyMathGameHacking is made by [all the people who have contributed to it](../../blob/master/meta/CONTRIBUTORS.md).

<br>



## Development
You can find our in-development code on an official fork of this repo: [**ProdigyMathGame/development**](https://github.com/ProdigyMathGame/development)

If you're interested in simple beta testing, open the hacks as usual, scroll down to "Beta Testing", and you can find a bunch of beta/WIP hacks.

<br>



Expand Down
65 changes: 60 additions & 5 deletions cheatGUI/README.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,74 @@
# Cheat GUI

<hr>

This is the main cheat menu GUI for ProdigyMathGameHacking.
Originally made by [Will](https://github.com/MelnCat) and maintained by [ArcerionDev](https://github.com/ArcerionDev) and [PatheticMustan](https://github.com/PatheticMustan), and now maintained by [ProdigyPNP](https://github.com/ProdigyPNP).

<hr>
<br><br>

Usage: Install the hacks, the dropdown should appear in the top left corner after a moment.
## Usage
Install the hacks, the dropdown should appear in the top left corner after a moment.

<br><br>

Build / Development:


## Development
Install dependencies:
```shell
npm run setup
```
npm i
<br>

Compile the menu:
```shell
npm run build
```
<br><br>

## Join us!
We are always looking for new contributors to help maintain the hacks and menu!

<br><br>

# npm package
The Cheat GUI is available on npmjs at https://npmjs.com/package/cheatgui.


<br>

### Installing P-NP
Shell
```shell
npm install cheatgui
npm install
npm update
```

<br>

### Uninstalling P-NP
Shell
```shell
npm uninstall cheatgui
npm install
npm update
```

<br>

### Import in TypeScript
TypeScript
```typescript
import CheatGUI from "cheatgui";
```

<br>

### Import in JavaScript
JavaScript
```javascript
const CheatGUI = require("cheatgui");
```

<br>
16 changes: 8 additions & 8 deletions cheatGUI/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion cheatGUI/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "prodigyhackgui",
"name": "cheatgui",
"version": "2.1.9",
"description": "Prodigy Hack GUI",
"main": "dist/bundle.js",
Expand Down