├── LICENSE ├── README.md ├── bot ├── __init__.py ├── bot.py ├── data │ └── data.json ├── mineclaimer.py ├── notpx.py ├── painter.py ├── upgrades.py └── utils.py ├── config.py ├── main.py ├── req.txt └── shot.png /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliCl0ner/NotPixel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliCl0ner/NotPixel/HEAD/README.md -------------------------------------------------------------------------------- /bot/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '1.0' -------------------------------------------------------------------------------- /bot/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliCl0ner/NotPixel/HEAD/bot/bot.py -------------------------------------------------------------------------------- /bot/data/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliCl0ner/NotPixel/HEAD/bot/data/data.json -------------------------------------------------------------------------------- /bot/mineclaimer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliCl0ner/NotPixel/HEAD/bot/mineclaimer.py -------------------------------------------------------------------------------- /bot/notpx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliCl0ner/NotPixel/HEAD/bot/notpx.py -------------------------------------------------------------------------------- /bot/painter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliCl0ner/NotPixel/HEAD/bot/painter.py -------------------------------------------------------------------------------- /bot/upgrades.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliCl0ner/NotPixel/HEAD/bot/upgrades.py -------------------------------------------------------------------------------- /bot/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliCl0ner/NotPixel/HEAD/bot/utils.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliCl0ner/NotPixel/HEAD/config.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliCl0ner/NotPixel/HEAD/main.py -------------------------------------------------------------------------------- /req.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliCl0ner/NotPixel/HEAD/req.txt -------------------------------------------------------------------------------- /shot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliCl0ner/NotPixel/HEAD/shot.png --------------------------------------------------------------------------------