- Jan 30, 2018
- 3,287
- 4,697
Well the menus look nicer but the dialogue could use work Eh it's playable.How is the English with the translation update?
You don't have permission to view the spoiler content.
Log in or register now.
Also TeamHentaiX it looks like the addLog lines aren't being processed correctly.
Too tired to really look into this but here are a few notes:
- addLog begins the Plugin Command but it's not a part of the sentence. IE: a few instances it got changed to "Got addLog \c[3]Potion \c[0]" instead of "addLog Obtained a \c[3]Potion\c[0]!"
- Space seems to confuse it. See the combat screenshot with "Number" at the lower left. A quick fix was filtering out the sentence part with a
You must be registered to see the linksIE: addLog [Normal Space][Sentence_with_unicode_special_spaces]
- I just corrected a few with notepad++ for the lols. Fun Fact the .json files are text so manipulation them is rather easy. It does double the slashes \\ instead of \. Translator++ still does this thing were it replaces japanese text with unicode codes like
\u30a4\u30d9\u30f3\u30c8\u306e\u547c\u3073\u51fa\u3057
which makes searching a bitch for some japanese text.
-
Code:
Find "addLog Number of slime defeats\r\n\\c[27]\\V[204]\\c[0]" Replace "addLog Slimes Defeated \\c[27]\\V[204]\\c[0]"
- Not sure if the addLog can handle the
\r\n
that Translator++ auto inserted in. But I only looked a bit at lines that clearly was meant for one line only text.
Went through and filtered a few lines with notepad++:
You don't have permission to view the spoiler content.
Log in or register now.
Last edited: