bophades

New Member
Jul 24, 2021
4
1
Anybody have a full save?? thx
edit: nvm just found out theres a full unlock option before starting the game
 
Last edited:

taglag

Well-Known Member
Aug 6, 2019
1,304
1,070
This is another one of those games with the Game.exe for Japanese version, and the Game.en.exe for the English version.

I like that it is in English language when you click the Game_en.exe.

But what I don't like is it seems to make the game unable acknowledge "RPGM_MV_Cheat_Menu" when using the Game_en.exe.

It only works for the Japanese Game.exe.

Does anyone know a simple fix to make the Game_en.exe be the master so I can use "RPGM_MV_Cheat_Menu".

I find it very useful not only for cheating variable value's while playing, especially on second play through, but also for all kind's of stuck bug's that can happen when playing RPGM_Maker games.
 

qyquy

Newbie
May 25, 2023
38
1
This is another one of those games with the Game.exe for Japanese version, and the Game.en.exe for the English version.

I like that it is in English language when you click the Game_en.exe.

But what I don't like is it seems to make the game unable acknowledge "RPGM_MV_Cheat_Menu" when using the Game_en.exe.

It only works for the Japanese Game.exe.

Does anyone know a simple fix to make the Game_en.exe be the master so I can use "RPGM_MV_Cheat_Menu".

I find it very useful not only for cheating variable value's while playing, especially on second play through, but also for all kind's of stuck bug's that can happen when playing RPGM_Maker games.
u can use MTool
 

taglag

Well-Known Member
Aug 6, 2019
1,304
1,070
u can use MTool
Yeah I actually have it on some RPGMV game some where that someone gave me, but it was pr-installed.

Evey time I try to download it I gat a Japanese page, or text, which is totally Unintelligible to me, and and apparent log in, and send money page.

So I have sort of avoided it.
 

Ungaa

Member
Feb 14, 2019
110
118
This is another one of those games with the Game.exe for Japanese version, and the Game.en.exe for the English version.

I like that it is in English language when you click the Game_en.exe.

But what I don't like is it seems to make the game unable acknowledge "RPGM_MV_Cheat_Menu" when using the Game_en.exe.

It only works for the Japanese Game.exe.

Does anyone know a simple fix to make the Game_en.exe be the master so I can use "RPGM_MV_Cheat_Menu".

I find it very useful not only for cheating variable value's while playing, especially on second play through, but also for all kind's of stuck bug's that can happen when playing RPGM_Maker games.
Game_en.exe is just a set of packaged translated files.
You can unpack the files from the game_en.exe with evbunpack and replace the original data and image files with the files extracted. It will run off the standard exe after that.
 
  • Like
Reactions: taglag

Ungaa

Member
Feb 14, 2019
110
118
Every time I want to fight the first boss it always happens like this, is there anyone who can help?
go to line 980 in MPP_EncounterEffect.js and replace this section:

SceneManager.snapTexture = function() {
const stage = this._scene
const width = Graphics.width;
const height = Graphics.height;
const renderTexture = PIXI.RenderTexture.create(width, height);
if (stage) {
const renderer = Graphics.app.renderer;
renderer.render(stage, renderTexture);
stage.worldTransform.identity();
}
return renderTexture;
};


With this ->


SceneManager.snapTexture = function() {
const stage = this._scene
const width = Graphics.width;
const height = Graphics.height;
const renderTexture = PIXI.RenderTexture.create(width, height);
if (stage) {
const renderer = Graphics.app.renderer;
var renderer = render(stage, renderTexture);
stage.worldTransform.identity();
}
return renderTexture;
 

FluffMeister

New Member
Aug 18, 2023
1
0
Every time I try to unpack the game it always says its corrupted and online says I should create a par2, but anytime I try to create it, it never finishes and won't let me interact with the file at all anymore, including deleting it because it says the file is open in par2, but I can't close it. Has anybody else ever had this problem?
 

taglag

Well-Known Member
Aug 6, 2019
1,304
1,070
u can use MTool
Game_en.exe is just a set of packaged translated files.
You can unpack the files from the game_en.exe with evbunpack and replace the original data and image files with the files extracted. It will run off the standard exe after that.
Yeah I finally got a version of Mtool going, the post I was trying to use before updated it's download url's, and this last attempt at downloading ti worked fine.

It is a very nice tool, no doubt! Thank you both for your advise.
 
  • Like
Reactions: Ungaa
2.80 star(s) 4 Votes