Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/SteamDatabase/SalienCheat
👽 Cheating Salien minigame, the proper way
https://github.com/SteamDatabase/SalienCheat
cheat docker php python salien steam
Last synced: 3 months ago
JSON representation
👽 Cheating Salien minigame, the proper way
- Host: GitHub
- URL: https://github.com/SteamDatabase/SalienCheat
- Owner: SteamDatabase
- License: mit
- Archived: true
- Created: 2018-06-21T19:47:02.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-07-03T18:49:12.000Z (over 6 years ago)
- Last Synced: 2024-07-16T09:54:07.116Z (4 months ago)
- Topics: cheat, docker, php, python, salien, steam
- Language: PHP
- Homepage: https://steamcommunity.com/saliengame/
- Size: 463 KB
- Stars: 937
- Watchers: 129
- Forks: 253
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-list-docker - SalienCheat
README
# How to use this
## First steps
1. Join https://steamcommunity.com/groups/SteamDB (needed to represent captures)
2. Open https://steamcommunity.com/saliengame/gettoken and save it (Ctrl+S) as `token.txt` in the same folder as `cheat.php`## PHP
### Windows
1. [Download this script](https://github.com/SteamDatabase/SalienCheat/archive/master.zip)
2. Extract it into a new folder
3. Click `cheat.bat` and follow instructionsIf that fails for any reason, or you still have questions, [check out this Google doc for commonly asked questions](https://docs.google.com/document/d/1DQx6K-SmfkF_fsy4sS-vMkUlqGrABolOpOtvAYaU3nU/preview).
### Mac
0. (optional) Launch the App Store and download any updates for macOS. Newer versions of macOS have php and curl included by default
1. Extract the contents of this script to the Downloads folder
2. Launch Terminal and run the script: `php downloads/cheat.php`You can also provide token directly in CLI, to ease running multiple accounts:
```bash
php cheat.php token1 accountid1
php cheat.php token2 accountid2
```### Linux
1. Install `php-curl` and enable it in `php.ini`
2. You know what you are doing. 🐧## Python
⚠ **Python version currently does not support Boss battles, so you should choose the PHP version.** ⚠
### Windows
1. [Download this script](https://github.com/SteamDatabase/SalienCheat/archive/master.zip)
2. Extract it into a new folder
3. Click `python-cheat.bat` and follow instructions### Linux/Cygwin
0. (optional) Setup virtual env: `virtualenv env && source env/bin/activate`
1. `pip install requests tqdm`
2. Run the script: `python cheat.py [token]`### Mac
0. (optional) Launch the App Store and download any updates for macOS. Newer versions of macOS have Python 2.7.10 included by default.
1. Extract the contents of this script to the Downloads folder.
2. Launch Terminal and run the following scripts:
1. `sudo easy_install pip`
2. `pip install requests tqdm`
3. `python downloads/cheat.py [token]`## Vagrant
1. Install [vagrant](https://www.vagrantup.com/downloads.html) and [VirtualBox](https://www.virtualbox.org/wiki/Downloads)
2. Run `vagrant up` to setup VM
3. Run cheat
* For PHP `vagrant ssh -c 'php cheat.php [token]`
* For Python `vagrant ssh -c 'python3 cheat.py [token]`## Docker
1. Extract contents of this script somewhere.
2. To build: `docker build . -t steamdb/saliencheat`
3. To run: `docker run -it --init --rm -e TOKEN=<32 character token from gettoken url> steamdb/saliencheat`
4. To stop running, Ctrl+C