- Jul 28, 2018
- 566
- 500
That is so far behind. I don't think I can find anything based on that.I wantet to test another version of the game and found the branch tag v2.0.1. I just downloaded it and copied the content folder from the other version. With the v2.0.1 i do not have this bug. But some Images are missing for me (city bg) and its the base version of the game (no mod/no loli). Maby that helps finding the problem.
No.Is there something that happens to advance the day except the two files you told me about?
If you look inside "menu_form" (which is in one of the top folders) line 189 (I think) you will see this:
Code:
FUNC('$menu', 'goto', $menu_item_end_day, next_day, 'menu_form', 'next_day', 'End of the day', 'End the day')
The '$menu' file is basically stitches code together to make it easier to form menus.
'$menu_item_end_day' has the graphical html code in it
'next_day' (the 4th argument) has a code in it
The last two variables are the name of the button and the tooltip text of the button
The line, in normal words is basically this:
"Make a button, with the graphics inside '$menu_item_end_day', the name "End of the day" and tooltip "End the day", then set 'menu_form' to the value of 'next_day'(4th argument) then go to the location 'next_day'(6th argument)."
Buttons and UI in general are done with HTML so it helps if you know that too
The fact that the button appears means that this is not the problem.