Hello everyone.
I have an issue related to a gosub I create to cap my relationship stats so that they don’t go negative.
First of all, let me tell you how I used the gosub so you can tell me if I did something wrong that gives me the error. After every *set char 10 I added the *gosub cap_rel
Here is the gosub code:
*label cap_rel
*if mayor < 0
*set mayor 0
*if marc < 0
*set marcus 0
*if jada < 0
*set jada 0
*if dierc < 0
*set dierc 0
*return
The issue is, I don’t know where I’m supposed to put it. I decided I was gonna add It at the very bottom of my code but if I do that I get a random test error saying something along the lines of “you already returned from the last gosub” so I don’t know what to do.