Thanks, I don't understand a bit about things you said above, but I download DB Browser for SQLite and figure out how to hack the funds. See my post below.tfigment wrote: ↑Sat Jun 17, 2023 12:41 amYou can edit the save files directly using sqlite editor such as [Link] or [Link].
Save are located in C:\Users\<User>\Documents\Rebound CG\Tennis Manager 2023\Saves\<save name>\save.db
The problem with editing values in this game is you have do something like the following to update. It requires you do not just change the value but then call the Update methods on TennisPlayerManager class to commit to database.I have a custom mod for Unity giving me python console access and used on this game but cannot really release it anywhere since its not a Cheat Table and not really wanting to maintain it anymore in any case. Its theoretically possible to do that in CE but really hard to get right.Attribute Change Pseudocode
Code: Select all
inst = UnityEngine.Object.FindObjectOfType[TMPC.MainInstaller]() mwvm = inst.Container.Resolve(TMPC.MainWindowViewModel) gw = mwvm.CurrentContent gwvm = gw.DataContext tpm = gui.getprivateattr(gwvm, 'm_teamProManager') tp = tpm.GetCurrentTennisPlayer() tp.Potential = 20 itpm = inst.Container.Resolve(ReboundCG.Tennis.ITennisPlayerManager) itpm.Update(tp)
See my post in this one viewtopic.php?f=2&t=29379&p=364650#p364650
If you use a SQL editor you can do something like the following but this is complicated for non-developer types.Code: Select all
SELECT * FROM save.TennisPlayer WHERE AffiliationId = -999; UPDATE save.TennisPlayer SET Potential = 20 WHERE AffiliationId = -999;
viewtopic.php?f=2&t=29379&p=364650#p364650
How to use this cheat table?
- Install Cheat Engine
- Double-click the .CT file in order to open it.
- Click the PC icon in Cheat Engine in order to select the game process.
- Keep the list.
- Activate the trainer options by checking boxes or setting values from 0 to 1