Master of Chess

Master of Chess

View Stats:
Cheats? Money / Debut points
hey! Is there any way to play without money / debut points limit? I would like to try using your game to learn debuts but with limits its hard to move my current repertoire
< >
Showing 1-9 of 9 comments
BRANE  [developer] Jun 18, 2024 @ 11:52am 
Not yet but it's something I'll look into adding in the next version 0.4.5
Степашка Jul 1, 2024 @ 9:36am 
@BRANE thank you! Could you please tell me, how to enable these cheats then? As I see in update description, you already added them
Степашка Jul 1, 2024 @ 9:47am 
I don't know, if what I found is legal or not, but we can open debug menu and write
{"book_points":1000} and use Apply
{"money":1000} and use Apply
To add 1000 debut points and 1000 money. Correct me please, if I'm using your developer menu instead of another cheating tool
BRANE  [developer] Jul 1, 2024 @ 11:08am 
nah, this is exactly it!
public void AddDebugData(Godot.Collections.Dictionary data)
{
Helpers.Print(PrintColor.Pink, data.Keys, data.Values);
if (data.Keys.Contains("skill_points"))
Player.SkillPoints += (int)data["skill_points"];
if (data.Keys.Contains("money"))
Player.AddMoney((int)data["money"]);
if (data.Keys.Contains("tactics"))
{
Player.SetPlayingStrengths((int)data["tactics"], (int)data["strategy"], (int)data["endgames"]);
}
if (data.Keys.Contains("energy"))
Player.SetEnergy((int)data["energy"]);
if (data.Keys.Contains("book_points"))
Player.AddBookPoints((int)data["book_points"]);
if (data.Keys.Contains("motivation"))
Player.AddMotivation((int)data["motivation"]);
}
Степашка Jul 1, 2024 @ 1:22pm 
Thanks! Now I see, why it works :steamthumbsup: Good luck with future development!
type 4 diabetes Jul 8, 2024 @ 8:11pm 
how do we open the debug menu?
BRANE  [developer] Jul 9, 2024 @ 2:19am 
By pressing '~' keyboard button. Usually can be found under the ESC key.
https://codingdeekshi.com/wp-content/uploads/2022/05/tilde-symbol-on-keyboard.jpg
type 4 diabetes Jul 9, 2024 @ 3:22pm 
thank you I was trying to understand what would the command be if I was only trying to get skill points?
BRANE  [developer] Jul 10, 2024 @ 5:36am 
Should be {"skill_points": 1000}
< >
Showing 1-9 of 9 comments
Per page: 1530 50