Tennis Manager 2023

Upload your cheat tables here (No requests)
Post Reply
User avatar
tdg6661
Table Makers
Table Makers
Posts: 689
Joined: Sat Dec 15, 2018 12:10 pm
Reputation: 257

Tennis Manager 2023

Post by tdg6661 »

Table is expected to run on Win 10, on CE 7.5 or later. See Read Me! for more information.

Supported platforms: Epic Games, GOG, Steam

You can also edit the savegame by using a SQL Editor; here's an explanation by tfigment.

✨ QUICK NOTE ✨

Code: Select all

● You need Cheat Engine to run this table, get it from (https://www.cheatengine.org/)
● Open this zip file using WinRAR (https://www.win-rar.com/download.html?&L=0)
● Enable 'Disable Dark Mode support' on Cheat Engine for an optimal viewing experience. (Edit -> Settings -> Disable Dark Mode support)
✨ WHAT'S NEW ✨

Code: Select all

● Initial release.
✨ FEATURES ✨

Code: Select all

● Affiliation Editor.
● Player Editor.
● Staff Editor.
● Cheat Presets.
✨ TIPS & BUGS ✨
  • Always make a backup to your game, which many bugs are not yet known.
  • Values are not immediately updated after editing, you need to Continue the game to see the result.
✨ SPECIAL THANKS ✨
  • Dark Byte
  • FRF Forum
  • mece
  • EpicBirdi
  • aSwedishMagyar
✨ SUPPORT & DONATION ✨

If you like this table and would like to support me, you can buy me some coffee by donating. So I can spare more time and motivation into this, although I can't offer too much aside from table and features request as I want to keep this table free of charge.

Code: Select all

● Patreon (World Wide) - https://www.patreon.com/tdg6661
● PayPal (World Wide) - https://paypal.me/tdg6661
● KaryaKarsa (Indonesia) - https://karyakarsa.com/tdg6661


How to use this cheat table?
  1. Install Cheat Engine
  2. Double-click the .CT file in order to open it.
  3. Click the PC icon in Cheat Engine in order to select the game process.
  4. Keep the list.
  5. Activate the trainer options by checking boxes or setting values from 0 to 1
Attachments
tennis_manager_2023_all_platforms.zip
Initial release.
password: tdg6661
(304.31 KiB) Downloaded 2507 times
Last edited by tdg6661 on Wed Jun 21, 2023 5:07 am, edited 2 times in total.

newsuzanoebok
Noobzor
Noobzor
Posts: 14
Joined: Wed Jun 14, 2023 1:40 am
Reputation: 4

Re: Tennis Manager 2023

Post by newsuzanoebok »

how can i edit players? its always like only "??" even if i mark Player and Details options

edit: dont know why but after i try more times it worked well xD lol thx a lot for this great work

User avatar
tdg6661
Table Makers
Table Makers
Posts: 689
Joined: Sat Dec 15, 2018 12:10 pm
Reputation: 257

Re: Tennis Manager 2023

Post by tdg6661 »

newsuzanoebok wrote:
Wed Jun 14, 2023 1:42 am
how can i edit players? its always like only "??" even if i mark Player and Details options

edit: dont know why but after i try more times it worked well xD lol thx a lot for this great work
Open the player Overview screen.

LoneCanidae
Noobzor
Noobzor
Posts: 6
Joined: Tue Jul 14, 2020 9:40 pm
Reputation: 5

Re: Tennis Manager 2023

Post by LoneCanidae »

Works great. Where can I edit potential of players?

User avatar
tdg6661
Table Makers
Table Makers
Posts: 689
Joined: Sat Dec 15, 2018 12:10 pm
Reputation: 257

Re: Tennis Manager 2023

Post by tdg6661 »

LoneCanidae wrote:
Fri Jun 16, 2023 7:09 pm
Works great. Where can I edit potential of players?
I found the potential, but it seems it has read-only value, so it's no use for now.

tfigment
Table Makers
Table Makers
Posts: 645
Joined: Sat Apr 15, 2017 12:49 am
Reputation: 805

Re: Tennis Manager 2023

Post by tfigment »

You 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.
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)
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.

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;

KingApin
Expert Cheater
Expert Cheater
Posts: 78
Joined: Fri Feb 28, 2020 11:36 pm
Reputation: 22

Re: Tennis Manager 2023

Post by KingApin »

tdg6661 wrote:
Tue Jun 13, 2023 5:48 am
Table is expected to run on Win 10, on CE 7.5 or later. See Read Me! for more information.

Supported platforms: Epic Games, GOG, Steam

You can also edit the savegame by using a SQL Editor; here's an explanation by tfigment.

✨ QUICK NOTE ✨

Code: Select all

● You need Cheat Engine to run this table, get it from (https://www.cheatengine.org/)
● Open this zip file using WinRAR (https://www.win-rar.com/download.html?&L=0)
● Enable 'Disable Dark Mode support' on Cheat Engine for an optimal viewing experience. (Edit -> Settings -> Disable Dark Mode support)
✨ WHAT'S NEW ✨

Code: Select all

● Initial release.
✨ FEATURES ✨

Code: Select all

● Affiliation Editor.
● Player Editor.
● Staff Editor.
● Cheat Presets.
✨ TIPS & BUGS ✨
  • Always make a backup to your game, which many bugs are not yet known.
  • Values are not immediately updated after editing, you need to Continue the game to see the result.
✨ SPECIAL THANKS ✨
  • Dark Byte
  • FRF Forum
  • mece
  • EpicBirdi
  • aSwedishMagyar
✨ SUPPORT & DONATION ✨

If you like this table and would like to support me, you can buy me some coffee by donating. So I can spare more time and motivation into this, although I can't offer too much aside from table and features request as I want to keep this table free of charge.

Code: Select all

● Patreon (World Wide) - https://www.patreon.com/tdg6661
● PayPal (World Wide) - https://paypal.me/tdg6661
● KaryaKarsa (Indonesia) - https://karyakarsa.com/tdg6661
I cant edit the Staff Details. Every time I edited it, it turns back to the old one. Also can you make a preset where you can destroy the player? For example, make their Morale and Condition to 0 and their Shape to Mediocre.

User avatar
tdg6661
Table Makers
Table Makers
Posts: 689
Joined: Sat Dec 15, 2018 12:10 pm
Reputation: 257

Re: Tennis Manager 2023

Post by tdg6661 »

KingApin wrote:
Fri Jul 14, 2023 2:50 pm
I cant edit the Staff Details. Every time I edited it, it turns back to the old one.
Thanks for reporting, I'll fix it soon.
KingApin wrote:
Fri Jul 14, 2023 2:50 pm
Also can you make a preset where you can destroy the player? For example, make their Morale and Condition to 0 and their Shape to Mediocre.
For sure

radius
What is cheating?
What is cheating?
Posts: 2
Joined: Fri Aug 04, 2023 2:36 pm
Reputation: 0

Re: Tennis Manager 2023

Post by radius »

please guys. i need help. i have tennis manager 23 3.0.6 version. i install this table. first open a game. load game. go to my player. now open ct table with cheat engine. click on proccessor and choose game. than check 'run table'. table is visible. but i cant edit ateibutes. only apears ??. and when i change 'value'. its still ??. maybe this tennis cheat table is not compatible with maly game? should i install older vesrion of this table?

Slamkalvary
What is cheating?
What is cheating?
Posts: 1
Joined: Sun Oct 08, 2023 1:25 am
Reputation: 0

Re: Tennis Manager 2023

Post by Slamkalvary »

Hi,
I can't seem to change my player attributes. I try to use numbers, then save but it still wouldn't save. Though the physical condition changes. Please can you do a short video showing how it works on your YT?

KingApin
Expert Cheater
Expert Cheater
Posts: 78
Joined: Fri Feb 28, 2020 11:36 pm
Reputation: 22

Re: Tennis Manager 2023

Post by KingApin »

tdg6661 wrote:
Mon Jul 17, 2023 1:05 pm
KingApin wrote:
Fri Jul 14, 2023 2:50 pm
I cant edit the Staff Details. Every time I edited it, it turns back to the old one.
Thanks for reporting, I'll fix it soon.
KingApin wrote:
Fri Jul 14, 2023 2:50 pm
Also can you make a preset where you can destroy the player? For example, make their Morale and Condition to 0 and their Shape to Mediocre.
For sure
Can you post the code or something that can destroy the player Morale, Condition and Shape please?

Post Reply

Who is online

Users browsing this forum: AhrefsBot, arrow2733, Bing [Bot], emmiiz, Google [Bot], Google Adsense [Bot], killerkrok555, Lep, rodi18, yaodm2020