mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-14 11:43:50 +01:00
844d518684
- Add a script to generate achievement data from Steamworks API - Add achievements page with a link in sidebar - Calculate achievements (1/min) with an engine counter - Store achievements with a timestamp on unlocked in the PlayerObject - Add a script to generate monochrome icons from Steam icons - Add toast when unlocking an achievement
23 lines
615 B
Markdown
23 lines
615 B
Markdown
# Tools
|
|
|
|
## Pretty Save
|
|
|
|
Useful to analyze a player's save game for anomalies.
|
|
|
|
It decodes the save and prettifies the output. Canno be used to modify a save game directly since it drops some properties.
|
|
|
|
**Usage**
|
|
```sh
|
|
node ./pretty-save.js 'C:\\Users\\martin\\Desktop\\bitburnerSave_1641395736_BN12x14.json' 'C:\\Users\\martin\\Desktop\\pretty.json'
|
|
```
|
|
|
|
## Fetch Steam Achievements Data
|
|
|
|
Used to synchronize the achievements info in steamworks to the game's data.json
|
|
|
|
**Usage**
|
|
```sh
|
|
# Get your key here: https://steamcommunity.com/dev/apikey
|
|
node fetch-steam-achievements-data.js DEVKEYDEVKEYDEVKEYDEVKEY
|
|
```
|