Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
The latest nwjs.app doesn't appear to be signed correctly, and I can't get it to work on my local machine. After a ton of tinkering I ended up running nwjs by using node.js, 'npx nw' and specifying the app.nw folder inside the app. It is a bit involved, but I got it working. I also did some tinkering with it to get it to work for other users on my Mac mini so my kids could play it.
I started using environment variables for the save location.
[code] var path = window.location.pathname.replace(/(\/www|)\/[^\/]*$/, `${process.env.HOME}/Library/Application Support/Steam/steamapps/common/HiraganaBattle/HiraganaBattle.app/Contents/Resources/app.nw/save/`); [/code]
This was a great help in fixing the issue I had on my Mac. I found some smaller errors in your mini tutorial and wanted to point them out so others in future have easier time.
In step 5, last line, change the forward slash between, .../nwjs and Framework.framework to a back slash. this is a spacing thing in terminal
Nano: (built-in text editor in terminal for mac) How to edit files in the Terminal (Mac & Linux)
paste this in this line in the terminal to continue the original editing of the rpg_managers.js file:
nano ~/Library/Application\ Support/Steam/steamapps/common/HiraganaBattle/HiraganaBattle.app/Contents/Resources/app.nw/js/rpg_managers.js
Go several pages over and you will find the part you need to edit is below the "Storage Manager" section.
In Steps 6 and 7 when it shows the directory. change, 'ticker' to your username which can be found under /Users directory. as this would have been their original username.
thanks!