import os import sys import json def main(): # Load the configuration with open("config.json", "r") as f: config = json.load(f) # Set the budget to unlimited config["budget"] = "unlimited" # Set the staff cost to zero config["staffCost"] = 0 # Set the staff slots to 99 config["staffSlots"] = 99 # Save the configuration with open("config.json", "w") as f: json.dump(config, f) # Open the game os.system("start ./WRC23.exe") if __name__ == "__main__": main()