Okay...
We need to talk about the code of this game.
To justify why I say that: I'm in engineering school for computer science. I don't really know how to code in Renpy but I know a lot about Python, C, C++ ...
Today I wanted to start to code my own Renpy game and I decide to analyse "Rogue-like:Evolution" code to learn how Renpy work (instead of using tutorial I found too long for the quantity of things I already know about programming).
And... my man...the code of this game seems good but the global work is shitty AF !
Two main issues for me:
1) Organisation: why can I find some "ProfessorX" functions in a file called "RogueDialogues" ?!
2) where are the comment ?! Seriously comment are not only for others they are also for the guy who make the code ! If you take a break of 2 mounths and forgetthings abouthow your code work how do you know what is the purposeof each line ? Simple: you waste 2 days to read your own work.