Relationship Status not displaying

So I’m finished with coding my characters into the game, but I’m having trouble with displaying the MC’s relationship with them? I’ve tried rewriting and finding out what’s wrong by trial and error, but it’s still not displaying. If someone can help me out with this, that’d be really great.

The code in question:

*if (ro1_romantic > 8)
Relationship: Description.
*goto ro1_rship_end

    *elseif (ro1_platonic > 8)
        [b]Relationship:[/b] Description.
        *goto ro1_rship_end
    
    *elseif (ro1_romantic > 3)
        [b]Relationship:[/b] Description.
        *goto ro1_rship_end
    
    *elseif (ro1_platonic > 3)
        [b]Relationship:[/b] Description.
        *goto ro1_rship_end
    
    *elseif (ro1_romantic > 0)
        [b]Relationship:[/b] Description.
        *goto ro1_rship_end
    
    *elseif (ro1_platonic > 0) 
        [b]Relationships:[/b] Description.
        *goto ro1_rship_end
    
    *else
        [b]Relationship:[/b] They have not met you yet.
        *goto ro1_rship_end
    
 
*label ro1_rship-end

You have the *label ro1_rship-end at the bottom. Try putting it further up top.

Note

The code treats *goto-*label interaction as skipping point/bookmark. Whenever it met with a *goto command, the code will search for a *label with the index equal as the one mentioned in the *goto and jumps there.

Thanks for that! It turns out I actually had a problem with the indents, the *elseif statements were supposed be still be in alignment with the *if statement