I hereby claim:
- I am mathielo on github.
- I am mathielo (https://keybase.io/mathielo) on keybase.
- I have a public key ASC6dyQXKeYUjqdMaP-HT3Q6i0uClyRW42HPhW9ILvNW5Qo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
If you're looking into automating transactions in your Steam Account using Steam Bots, you most likely will need to:
shared secret and identity secretHaving Steam Guard enabled for your Steam Account ensures that there will be no holds on transactions such as trades. Having the shared and identity secrets are necessary for complete autonomy of your Steam Bot, meaning it won't require any human interaction from you.
There is a tremendous lack of information about all of this as Steam does not provide official support for implementing Steam Bots. The information available in this guide was gathered through lots of blood and sweat hard research, reverse eng
| // ==UserScript== | |
| // @name Steam AchievEnhancer | |
| // @description Hides unlocked achievements to make it easier to track locked achievements | |
| // @namespace https://mathielo.com/ | |
| // @homepage https://gist.github.com/mathielo/cedc41b3d088716ff53457fc0c676e8e | |
| // @version 0.1 | |
| // @author mathielo | |
| // @match https://steamcommunity.com/stats/*/achievements | |
| // @match https://steamcommunity.com/stats/*/achievements/ | |
| // @icon https://steamcommunity.com/favicon.ico |
| # This script automatically backs up the Crashlands save files on the selected interval. | |
| # It also allows the user to restore the latest backup by pressing 'R' and confirming within 5 seconds. | |
| # | |
| # Backups are kept in a rotation, meaning only the latest 5 backups are kept. Older backups are sent to | |
| # the Recycle Bin (not permanently deleted). | |
| # | |
| # The script will run indefinitely until the user presses Ctrl+C to exit, or until the user confirms a restore. | |
| Add-Type -AssemblyName Microsoft.VisualBasic | |
| # Configuration |