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

Great Fairy Wars/Tools: Difference between revisions

From Touhou Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
(5 intermediate revisions by 4 users not shown)
Line 1: Line 1:
== Current Version ==
==Current Version==
 
* '''Official''': 1.00
* '''Official''': 1.00
* '''English''': 1.00
* '''English''': 1.00


== Music Tools ==
==Music Tools==
 
The following tools work with Fairy Wars:
The following tools work with Fairy Wars:
* Touhou BGM Player (THxxBGM)
* [[Touhou BGM Player]] (THxxBGM)
* Touhou Gramophone
* [[Touhou Gramophone]]
* thbgm12_8 - Fairy Wars BGM Ripping Tool (th4_3696)
* [[thbgm12_8]] - Fairy Wars BGM Ripping Tool (th4_3696)
 
== Archive Tools ==


==Archive Tools==
The following tools work with Fairy Wars:
The following tools work with Fairy Wars:
* Brightmoon
* [[Brightmoon]]
 
== Unofficial Patches ==


There exists an unofficial 1.00a patch, available to download [[http://wordpress.click3.org/garakuta/th128_bugpatch.zip here]]. The changes include:
==Unofficial Patches==
There exists an unofficial 1.00a patch, available to download at wordpress [http://wordpress.click3.org/garakuta/th128_bugpatch.zip here]. The changes include:
* Fixed the bug where it would record scores for the wrong route played
* Fixed the bug where it would record scores for the wrong route played
* When playing a replay, the number of gold medals(no-ice victories) will be added
* When playing a replay, the number of gold medals(no-ice victories) will be added
* Fixed the bug where the bomb icons would sometimes display the wrong number of bombs after deathbombing
* Fixed the bug where the bomb icons would sometimes display the wrong number of bombs after deathbombing


== Portable Fairy Wars ==
==Portable Fairy Wars==
Like [[Double Spoiler]], Fairy Wars stores userdata in the current user's Application Data folder. This can cause problems when a user wants to run the same state from multiple logins, or multiple computers. To keep things in the Fairy Wars directory, there is a simple fix: Create a notepad file, rename it to a .bat extension, (let's call it <tt>touhou128.bat</tt>) and put the following:
Like [[Double Spoiler]], Fairy Wars stores userdata in the current user's Application Data folder. This can cause problems when a user wants to run the same state from multiple logins, or multiple computers. To keep things in the Fairy Wars directory, there is a simple fix: Create a notepad file, rename it to a .bat extension, (let's call it <tt>touhou128.bat</tt>) and put the following:
  @echo off
  @echo off
Line 34: Line 30:
  set "APPDATA=%CD%\user"
  set "APPDATA=%CD%\user"
  start custom
  start custom
There! Now, whenever you start Fairy Wars, the profile data that would be placed in your Application Data folder is instead placed in your Fairy Wars directory. Additionally, if you already have AppLocale installed, you can have the batch files start the executables using japanese locale by adding the following to the batch files on the lines between '@echo off' and 'md "%CD%\user"':
There! Now, whenever you start Fairy Wars, the profile data that would be placed in your Application Data folder is instead placed in your Fairy Wars directory. Additionally, if you already have AppLocale installed, you can have the batch files start the executables using Japanese locale by adding the following to the batch files on the lines between <tt>@echo off</tt> and <tt>md "%CD%\user"</tt>:
  set __COMPAT_LAYER=ApplicationLocale
  set __COMPAT_LAYER=ApplicationLocale
  set AppLocaleID=0411
  set AppLocaleID=0411


{{Navbox FW}}
{{Navbox FW}}
{{Category:Fairy Wars}}
[[Category:Fairy Wars]]
[[Category:Game Tools]]
[[Category:Game Tools]]
[[ru:Fairy Wars/Инструменты]]

Revision as of 07:36, 24 June 2016

Current Version

  • Official: 1.00
  • English: 1.00

Music Tools

The following tools work with Fairy Wars:

Archive Tools

The following tools work with Fairy Wars:

Unofficial Patches

There exists an unofficial 1.00a patch, available to download at wordpress here. The changes include:

  • Fixed the bug where it would record scores for the wrong route played
  • When playing a replay, the number of gold medals(no-ice victories) will be added
  • Fixed the bug where the bomb icons would sometimes display the wrong number of bombs after deathbombing

Portable Fairy Wars

Like Double Spoiler, Fairy Wars stores userdata in the current user's Application Data folder. This can cause problems when a user wants to run the same state from multiple logins, or multiple computers. To keep things in the Fairy Wars directory, there is a simple fix: Create a notepad file, rename it to a .bat extension, (let's call it touhou128.bat) and put the following:

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

Similarly, create one for custom.exe by making a custom.bat and putting

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

There! Now, whenever you start Fairy Wars, the profile data that would be placed in your Application Data folder is instead placed in your Fairy Wars directory. Additionally, if you already have AppLocale installed, you can have the batch files start the executables using Japanese locale by adding the following to the batch files on the lines between @echo off and md "%CD%\user":

set __COMPAT_LAYER=ApplicationLocale
set AppLocaleID=0411