This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # This script gets all the URLs named in a Tabletop Simulator Mod or Save json | |
| # file and saves them in Models or Images directories, with filename munging | |
| # intended to match that used by TTS. These files can then be (manually) | |
| # copied or moved into your Mods/Images and Mods/Models directories. On my | |
| # system, these are located in "~/My Games/Tabletop Simulator/Mods". | |
| # | |
| # These files will be used by the game instead of trying to retrieve the URLs | |
| # at runtime. This can be useful to avoid problems with TTS failing to | |
| # retrieve certain URLs (possibly reporting SSL errors) on some operating |