Go to file
Christoph Stahl 6509400f8e Improved greasemonkey script by adding scope 2019-06-26 21:54:05 +02:00
.gitignore Character Name Update 2019-06-25 16:32:01 +01:00
LICENSE Update LICENSE 2017-07-03 14:29:57 +02:00
README.md Added Greasemonkey script and updated README with more detailed instructions (Thanks to TeaWithLucas) 2019-06-26 21:51:45 +02:00
greasemonkey_autoload.js Improved greasemonkey script by adding scope 2019-06-26 21:54:05 +02:00
herosaver.js Fixing unique ID 2019-06-26 10:44:16 +01:00
herosaver.min.js Character Name Update 2019-06-25 16:32:01 +01:00

README.md

Herosaver

Save Configuration and STL of https://www.heroforge.com/

Usage

You can use HeroSaver in one of two fashions. Either you let it load as soon as you visit HeroForge (You need a browser extension for that), or you load it manually through your browsers console (No extension needed).

Automatically

You can automatically load HeroSaver when you visit HeroForge by adding a GreaseMonkey/TamperMonkey script. For that you need to install GreaseMonkey or TamperMonkey (Click here or here for Firefox, or here for Chrome, and install the addon).

Now click on the GreaseMonkey or TamperMonkey icon in your browser, and select something like "New Script" or "New Userscript" and paste the contents of the following file: https://raw.githubusercontent.com/christofsteel/herosaver/master/greasemonkey_autoload.js. Hit save and you are done.

Note: There is a version of TamperMonkey for Safari and Edge, but I never tried them. It is very much possible, that the same workflow works for those browsers.

Manually

Alternatively you can load the HeroSaver manually everytime you visit HeroForge.

  1. Go to https://www.heroforge.com/
  2. Open the Javascript Console [F12], then click on Console
  3. Paste the following
var xhr=new XMLHttpRequest;xhr.open("get","https://raw.githubusercontent.com/christofsteel/herosaver/master/herosaver.min.js",true);xhr.onreadystatechange=function(){if(xhr.readyState==4){var script=document.createElement("script");script.type="text/javascript";script.text=xhr.responseText;document.body.appendChild(script)}};xhr.send(null);

Buttons

Once HeroSaver is loaded, you have these additional buttons on the top bar:

  • Export Model (STL) - Exports the current model and downloads a STL of it.
  • Export (JSON) - Exports the current model settings in a JSON format.
  • Import (JSON) - Imports a previously exported JSON file with model settings.

Limitations

Some details of the figures are implemented via shaders. These are not exported :( This is also the reason, the exported figures look a bit blocky. If you want hight quality exports, consider purchasing the stl files from heroforge :)