Stats bar?

IndieKrateStudios
14 Mar 2017, 12:17

Hi I'm making a zombie survival type choose your fate text adventure and I wanted to know was there a way to implement a "show stats" or something like "about me" or "progress" bar where the player can click it and see their points,money,achievements,relationships,etc.

thanks ---

indie


Siddone
14 Mar 2017, 18:00

You coud use a master section. It has an empty name and works as it is written in any section.

[[]]:
Life: {life}, Money: {money}, Ammo:{ammo}

It should show the value of life money and ammo at the top of every section.

Or you just could copy the line at the top, bottom or middle of each section, or just write it in a passage that you may very well name "Show stats" or "About me".

If you want you can [show stats].

[show stats]:
Life: {life}, Money: {money}, Ammo:{ammo}

Am I right, guys?


IndieKrateStudios
14 Mar 2017, 23:17

Thanks a ton! I'm definitely going to try the second option,i did the first,it sorta worked but didn't meet my expectations! thanks again :)