link deadHere is the link for the game if you are still looking.
You must be registered to see the links
I just wanted you to know so that you wouldn't exhaust yourself. I expect them to release the game 3 months latergears2260 well, i better upload a partial translation soon them. i dont want to let everyone empty handed, didnt they were working on this one too.
im using translator++, im one of the patreons.Don't have much experience with VXAce, but from the error message it'd guess that you're trying to write strings that are too long for a variable?
But it's hard to make out, especially since it refers to $game_variables when it should be $game_variable, afaik.
Maybe check what the variable 299 is called, and what you're using as translation?
Ah okay, never used that one.im using translator++, im one of the patreons.
maybe one of the scripts got translated with the patch and its making this problem, i will try to start again without trying to translate text thats supposed to be on the menus or skills to see what happen.
Error parsing Script base(\u5171\u901a\u30b9\u30af\u30ea\u30d7\u30c8): Cannot parse heredoc; leaving untranslated
Error parsing Script CAlt:\u30de\u30a6\u30b9\u64cd\u4f5c\u3092\u5f37\u5236\u9069\u7528: Cannot parse heredoc; leaving untranslated
Error parsing Script \u2605\u2605\u2605menu: String out of bounds: RubyParserState(string=..'\n'.., index=2610, ruleStack=['Base', 'Bracket', 'Bracket']) # 66:2529; leaving untranslated
Error parsing Script \u30dd\u30fc\u30ab\u30fc: Cannot parse heredoc; leaving untranslated
Error parsing Script \u30c0\u30e1\u30fc\u30b8\u30a4\u30d9\u30f3\u30c8: String out of bounds: RubyParserState(string=..'\t'.., index=19644, ruleStack=['Base', 'Bracket', 'Backtick']) # 532:19564; leaving untranslated
% Error parsing inline script: String out of bounds: RubyParserState(string=..'\n'.., index=33, ruleStack=['Base', 'DoubleQuote']) # 1:2; script not translated. Script $game_variables[299] = \u30b2\u30a4\u30b9\u306e\u90e8\u4e0b\uff2e"
% Error parsing inline script: String out of bounds: RubyParserState(string=..'\n'.., index=33, ruleStack=['Base', 'DoubleQuote']) # 1:2; script not translated. Script $game_variables[299] = \u30b2\u30a4\u30b9\u306e\u90e8\u4e0b\uff2e"
the translator gave me the files that i have to replace with the ones on the game files to apply the translation. its really easy, just replacing the data's. but after doing that and trying to test the game, it let to not translating anything. menus, dialogs and options. i will check the variables to make sure everything is in order when i have time. THB most of the week i past all the day at work/college, so working on this game is like i said a hobby or so. but i appreciate your help. i will let you know if i made some sort of progress~Ah okay, never used that one.
Hm, does it give you any result at all or does it abort?
Because I think I see what's causing some of the problems.
The translator seems to be trying to translate the string "\n" which is used in the RPG maker dialogue to call a variable (a name). As a result, it's a string that cannot be translated. As a result, the called name will always be the japanese called name - but if the called name itself was, somewhere else, translated, the name will automatically be called in its translated form.
Error 1:
No idea about this one.Code:Error parsing Script base(\u5171\u901a\u30b9\u30af\u30ea\u30d7\u30c8): Cannot parse heredoc; leaving untranslated
Error 2:
Same here. I've got no idea what "heredoc" is supposed to be. I'd probably need to see the actual script that's being translated.Code:Error parsing Script CAlt:\u30de\u30a6\u30b9\u64cd\u4f5c\u3092\u5f37\u5236\u9069\u7528: Cannot parse heredoc; leaving untranslated
Error3:
This is, I assume, where the original author calls the name via \N, which the program cannot translate.Code:Error parsing Script \u2605\u2605\u2605menu: String out of bounds: RubyParserState(string=..'\n'.., index=2610, ruleStack=['Base', 'Bracket', 'Bracket']) # 66:2529; leaving untranslated
Error 4:
Same as Error 1 and 2. I'd be interesting to know what \u30dd\u30fc\u30ab\u30fc references.Code:Error parsing Script \u30dd\u30fc\u30ab\u30fc: Cannot parse heredoc; leaving untranslated
Error 5:
Same as error 3, except this seems to use a custom variable call in dialogue.Code:Error parsing Script \u30c0\u30e1\u30fc\u30b8\u30a4\u30d9\u30f3\u30c8: String out of bounds: RubyParserState(string=..'\t'.., index=19644, ruleStack=['Base', 'Bracket', 'Backtick']) # 532:19564; leaving untranslated
Error 6:
Same as 3 and 5, though I'm wondering why it's using a different ruleStack, even though the string itself seems to be identical to error 3. I'd need to know more about ruleStack and what it exactly is.Code:% Error parsing inline script: String out of bounds: RubyParserState(string=..'\n'.., index=33, ruleStack=['Base', 'DoubleQuote']) # 1:2; script not translated. Script $game_variables[299] = \u30b2\u30a4\u30b9\u306e\u90e8\u4e0b\uff2e"
I also don't know why in this instance game variables are specifically referenced and why it uses the plural.
Can you maybe identify what the original text was, before the translation attempt was made?
Error 7:
Same as 3,5 and 6. Pretty much identical to Error 6.Code:% Error parsing inline script: String out of bounds: RubyParserState(string=..'\n'.., index=33, ruleStack=['Base', 'DoubleQuote']) # 1:2; script not translated. Script $game_variables[299] = \u30b2\u30a4\u30b9\u306e\u90e8\u4e0b\uff2e"
Maybe try to find the original source code of the problematic lines - some of these may not be a problem if they're untranslated.