But I don’t know if it’s accurate with what I want to do…
Thank you for responding!
Edit: @PatrickKlug When It’s finished, I would like to share the mod with the GDT community, so I cannot just simply modify the game source code itself because it’s illegal to share it. So I’m asking here for a possibility to edit this things by patching the game source code, like any other mod do.
Located in: C:\Program Files\Steam\steamapps\common\Game Dev Tycoon\compressed\CodeNw
The start rule is 430, i can’t show you anymore of the code because my screen resolution is 1280x1024
I’ve yet tried to edit things this way and it’s working properly. But the problem is that I want to release the mod for everyone when it’s finished, so I have to patch the game source code but I don’t know if it is possible to edit this kind of things by this way…
I think you need to ask @Charlie about that question, OR you can make you mod with the same topics as in the game and edit them. For example: ‘Sports’ is a topic, you could code a new topic with the name ‘Sports’ in your mod. I think it should read the game code before your mod.
////offtopic
1258×293
then you tell me my resolution is random
////offtopic @AlmostModder you can edit the game code if you can understand it
or you could learn how to edit the code without making a backup
I mean you just code a new topic with the name: Sports, and you edit it to your wants. GDT will read the game code before your mod so the topic Sports get’s ‘refreshed’ and your edited ‘Sports’ topic is done!
I’ve tried to simply add topics with the same IDs as in the original game code, but with different names, but the names in game are still the sames as the original ones. Then I’ve tried to do the contrary (different IDs and same names) and it didn’t work too.
But thank you! I will ask @Charlie!
absolutely. You can do this with any JS object in the game.
You can access all research items via
Research.getAllItems();
Genres are a bit of an outlier in that they are implictly defined via the genreWeightings and missionWeightings but you can also get a list of them via the GameGenre.X methods. It’s not easy to add a genre though.