I need help setting up a certain part of my stats screen

Personally, I would rewrite this choice like this:

*choice
   #Run (If you run you have to drop something valuable (-5 Skill or items)
    *set agility -5
    *goto escapec3
   #Hide in mine (20 Intelligence)
     *if intelligence > 19
         You stay quiet enough to where they don't notice. 
         *if (power = "Water")
             *goto escapec2
         *if power != "Water"
             [i] Relationship with Amanzi increases [/i]
             *set Amanzi +10
             *goto escapec2      
     *if intelligence < 20
         They hear you and kill you before you could explain
         *goto realcheckpoint2
   #Climb the tree (20 Agility)
     *if agility > 19
         You stay quiet enough to where they don't notice. 
         *if (power = "Water")
             *goto escapec2.1
         *if power != "Water"
             [i] Relationship with Amanzi increases [/i]
             *set Amanzi +10
             *goto escapec2.1 
     *if agility < 20
        *if (power != "Air")
           Anemos wind spirits see you|They kill you before you can explain
        *if (power = "Air")
           Kasai fire spirits see you|They kill you before you can explain
        *goto realcheckpoint2

Edited to account for not meeting Ananzi if you have water power.

2 Likes

While adding the text back in, I realized that all the text for all powers in the intelligence check was the same. In the agility check, Air is the only power thatā€™s different. And so it simplifiesā€¦

ā€¦to exactly what @Kotosinica has suggested.

1 Like

I canā€™t do the relationship with amanzi increases because if your element is water you will not meet Amanzi because he is also a water elemental

but if you have fire,air/wind,or earth you will meet him @Kotosinica @Minnow

and vice versa with the other powers.

This bit from your example has Amanzi +10, thatā€™s why I didnā€™t realize it:

*if (power = "Water")
         You stay quiet enough to where they don't notice.

         *set Amanzi +10
         *goto escapec2

I shall edit my example above a little.

1 Like

I have edited my example above to account for not meeting Ananzi.

1 Like

It worked thank you

1 Like

This topic was automatically closed 24 hours after the last reply. If you want to reopen your WiP, contact the @moderators.