- Jan 29, 2023
- 300
- 44
I admit your tranglate is good but the funny thing is that items are not even more important for upgrading weapons and looking for key items or other things.It's to be expected as not all the skills stuff are translated.
I admit your tranglate is good but the funny thing is that items are not even more important for upgrading weapons and looking for key items or other things.It's to be expected as not all the skills stuff are translated.
Game have 3roots + big amount of content on NG+. In house you have white crystal. It gallery of scene. And yellow crystal, its gallery of titles. Skills from titles have they own pictures.View attachment 3124768
How do I get this scene? I have got the ending of beating Sherry and giving in to Sherry. There is a scene where Hevetica corrup By Sherry change but I can't get this scene.
Yes, just install as usual.How do i apply the translation in joiplay?
Where are you looking for Ecchi Stone and against whom?Game have 3roots + big amount of content on NG+. In house you have white crystal. It gallery of scene. And yellow crystal, its gallery of titles. Skills from titles have they own pictures.
"Fight with enemy on this or next floor/repeat boss fights and increase difficult" (max difficult 8, its increase drop chance x8, base drop chance for almost all !items! 1/5). Its drops from wriggles or dynasty, you not need to go deeper(assuming that you farming stones for dynasty).Where are you looking for Ecchi Stone and against whom?
If I remember who is false guru. There 3 "guru": Shunka "rival" - crystal can be find in cathedral, dark breather guru(possible companion) - south of 1or2nd floor of Shunka root, mask guru - gods tower. Advices where to find crystals in "gallery".Where can i find the false guru transformation crystals, i can't find them anywhere
Just follow the Arrows.like idk how to get the endings to say what to do. IT appears hidden. or how to achieve some ending
You can remove them by going into the equipment as the down arrows (There is more than 3 equipment slots.How do I take off the starfish nipples or the Futanari Cock?
This breaks skills from playing events when used, the same translation issue that's been talked about before in this thread.Additionally also did all the skills + H Abilities.
use.isSkill() && use.object().name == 'skill name here'
(?<=')(.*)(?='")
Kinda hoped this won't be an issue but... Here we have developers hard coding names to script functions. Yay!This breaks skills from playing events when used, the same translation issue that's been talked about before in this thread.
In order for the associated events in CommonEvents.json to play, the translated skill names need to match.
There are currently 231 different events in version 1.09 for a bit less than 231 skills (a couple skills have multiple possible events.)
In the CommonEvents.json file, the name inside the single-quotes needs to match the skill name from Skills.json:
Code:use.isSkill() && use.object().name == 'skill name here'
A regex filter can be used to list only the name that needs to be changed:
Code:(?<=')(.*)(?='")
This basically means that skill names need to be translated twice:
Once in Skills.json and then again in CommonEvents.json