• Welcome to Touhou Wiki!
  • Registering is temporarily disabled. Check in our Discord server to request an account and for assistance of any kind.

Double Spoiler/Tools

From Touhou Wiki
Jump to navigation Jump to search

Current Version

  • Official: 1.00a
  • English: 1.01

Music Tools

The following tools work with Double Spoiler:

Archive Tools

The following tools work with Double Spoiler:

Portable Double Spoiler

Starting with Double Spoiler, data (such as config, scores, and replays) are stored in the user's profile directory. Some people might not want this, and instead want to keep things in the DS directory to keep things portable. Here's a fix: Make a batch file (let's say th125p.bat) in the same directory as th125.exe, with the following contents:

@echo off
md "%CD%\user"
set "APPDATA=%CD%\user"
start th125

Then run th125p.bat, and everything will be stored under a user directory under where th125.exe is, rather than the usual Application Data directory. If you want to keep your progress, then copy/move your Users\<username>\AppData\Roaming\ShanghaiAlice (for Vista and 7) or Documents and Settings\<username>\Application Data\ShanghaiAlice (for XP) directory to <DS directory>\user\ShanghaiAlice.

If you use the above method, you should also create one for custom.exe, let's call it customp.bat

@echo off
md "%CD%\user"
set "APPDATA=%CD%\user"
start custom

Of course, you can change "user" to anything. If you need multiple profiles (for example, if more than one person uses the computer to play the game), you can make .bat files for each of them by changing both occurrences of "user" in each to, say, the person's name.