I have concerns about the stats page getting too cluttered and ultimately overwhelming or even turning-away readers.
My solution to this is “hiding” chunks of stats behind *if statements unless they’re relevant to what the reader is doing in the story.
I don’t have any relationship meters in my game but as an example, I have 3 different “combat” scenarios that each rely on a different set of stats. (Solo: if you’re fighting alone, Squad: if you’re fighting alongside companions, and Ship: if you’re engaged in a ship-battle).
I have a boolean variable for each of these scenarios. If you’re in Solo, the solo variable is true and the others are false.
Then in the stats scene I have
*if (solo = true)
{shows stats relevant to solo combat}
*if (squad = true)
{shows stats relevant to squad combat}
*if (ship = true)
{shows stats relevant to ship combat}
The idea being, whenever you enter one combat scenario, its respective variable is *set to true, and the others are *set to false.
This way, the reader has immediate access to only the information they need at that time and don’t have to wade through a potential sea of stat meters, or dive into a bunch of “tabs” to find it.
Idk how well this works with things like relationships since I imagine they could be changing all the time depending on the game, but I guess you could *create a variable that is True when you’re having a conversation with someone and then False when the conversation is over, even for each individual character if you wanted…
So something like
*if (relationship_conversation = true)
{shows all relationship meters}
Or if you want it to only show the meter for the relevant character:
*if (relationship_character1 = true)
{shows meter of character1}
*if (relationship_character2 = true)
{shows meter of character2}
*comment and so on…
Anyways I find this to be a very useful alternative to compartmentalizing would-be urgent information into tabs.
It’ll look like a mess on the author’s side because now your stats scene is littered with *if statements but, from the readers perspective it’s very clean and convenient.