souldead341

Engaged Member
Oct 16, 2017
2,122
2,162
i dont get it
First, cheat engine is a huge pain to work with for RPGMaker MV and MX. Second, you could use Saveeditonline, which may let you edit money (not all games put everything into the standard save files).

You could just look at the first post to find the mods list link, then use the cheat plugin for the game linked there.
 

Imitater

Member
Aug 2, 2022
120
123
does anyone know what cheat gives money?
1st Method: Save Editor
1. Find the save file you want to cheat.
2. Go to
3. Find the stats you want to edit
4. Download the save file then overwrite the previous save.

It's near impossible to cheat RPGM applications using Cheat Engine.

2nd Method: Mod Menu
Add this file into the mod folder. Press 1 when playing the game. Press 2 and 3 to navigate. (The numbers below the F1-F12 keys, not the right reypads)
 
  • Like
Reactions: Sp0lly

Purple_Heart

Well-Known Member
Oct 15, 2021
1,853
3,222
damn... i was hoping i dont have to change it on every update
I keep a list of files I've changed, including mods. When I decide to update the game or mods I use notepad++'s compare plugin to see if there are differences between files from new update and my current files. Then, I make the same changes to files of updated version too. This way I only change specific parts of code without touching any other changes made by developer. It takes some time but sadly this is the most efficient way I know of.
 
Jun 28, 2017
130
95
Has cc mod been updated to the latest version? I've been away for AWHILE and I don't remember where to check

(If I literally just check here I'm gonna feel so stupid)
 

JughHass

New Member
Jul 17, 2019
10
9
I cannot get the latest version of this game to run on the Steam Deck
Can anyone help? I did all the same stuff I did for an older version but it just won't boot and I have no idea why.
 

JughHass

New Member
Jul 17, 2019
10
9
I cannot get the latest version of this game to run on the Steam Deck
Can anyone help? I did all the same stuff I did for an older version but it just won't boot and I have no idea why.
On that note, I also cannot get CCMod to work on the Deck either even with the older version that DOES boot
It first said I needed fast cutins, then after I installed that it works but it seems to crash partway through whatever fast cutins is doing and I can't figure out what the problem is.
 

fart1111

Member
Oct 31, 2019
273
582
I keep a list of files I've changed, including mods. When I decide to update the game or mods I use notepad++'s compare plugin to see if there are differences between files from new update and my current files. Then, I make the same changes to files of updated version too. This way I only change specific parts of code without touching any other changes made by developer. It takes some time but sadly this is the most efficient way I know of.
Just make a custom mod file and hijack whatever function you are editing. Base game files get loaded first and mods load after, so if the game updates and the base games .js file updates your mod remains untouched and working and over write base game changes because they loaded after.

Just make a .js file with this as the first lines. And name the file Custom.js

// #MODS TXT LINES:
// {"name":"Custom","status":true,"description":"","parameters":{"Debug":"0"}},
// #MODS TXT LINES END

And then below it add whatever function you are changing with the changes you want. As an example I have this in mine

//Max Bar customers

Game_Troop.prototype.waitressBattle_startingCustomers = function() {
let actor = $gameActors.actor(ACTOR_KARRYN_ID);
let customers = [];
let startingNum = 10;
let rep = $gameParty._barReputation;


startingNum = Math.min(startingNum, BAR_TOTAL_SEATS);

for(let i = 0; i < startingNum; ++i) {
customers.push(this.waitressBattle_validEnemyId());
}

return customers;
};
Which is from the waitress file and this edit makes it so 10 people always spawn when the waitress mini game starts so you have a full crowd.
 

Purple_Heart

Well-Known Member
Oct 15, 2021
1,853
3,222
On that note, I also cannot get CCMod to work on the Deck either even with the older version that DOES boot
It first said I needed fast cutins, then after I installed that it works but it seems to crash partway through whatever fast cutins is doing and I can't figure out what the problem is.
The problem is if I am not mistaken steam deck is using linux but game and mods are made for windows.
 

Purple_Heart

Well-Known Member
Oct 15, 2021
1,853
3,222
Just make a custom mod file and hijack whatever function you are editing. Base game files get loaded first and mods load after, so if the game updates and the base games .js file updates your mod remains untouched and working and over write base game changes because they loaded after.

Just make a .js file with this as the first lines. And name the file Custom.js




And then below it add whatever function you are changing with the changes you want. As an example I have this in mine



Which is from the waitress file and this edit makes it so 10 people always spawn when the waitress mini game starts so you have a full crowd.
Thanks, this is indeed a good way of making/keeping small modifications but in my case I've touched way too many functions and way too many files to turn them into a mod like that.
 
4.60 star(s) 403 Votes