first one I need help with is invalid create, name was previously created on line 70, the next error is chp1nextdaymale line 19: Invalid indent? Expected an #option here, not *goto
the main problem with the name error is that no names repeat so I don’t understand why I keep getting this error.
The invalid create is because you have used *create for the same variable twice, once on line 70 in startup and once somewhere else. For the indent, it would be helpful to post the code of line 19, with a few lines before and after so it’s easier to see the context.
I haven’t used it anywhere else it’s only on one line, I only used one name one time each time, I delete things and it still gives me that error, I’m using cside’s web version
UPDATE: It’s ONLY on line 70 specifically, I just deleted the next name and it popped up again
the invalid create is probably because in your startup file, you have created several ‘name’ variables. (“Mikaru”, “Tatsuya”, “Hirai”, etc) and then likewise for ‘surname’. you can only ‘create’ a variable once.
the invalid indent error is because your option starting with ‘Decent.’ has gotten misaligned. it needs to be in line with the other choices
*create name "Mikaru"
*create name "Tatsuya"
*create name "Hirai"
*create name "Izana"
*create name "Yata"
*create name "Rinda"
*create name "Shion"
*create name "Enari"
*create name "Koko"
*create name "Mikoto"
*create surname "Amamiya"
*create surname "Ashikaga"
*create surname "Suoh"
*create surname "Kisaki"
*create surname "Shitaro"
*create surname "Munakata"
*create surname "Inuime"
This is from your startup file, and is done incorrectly.
You don’t *create each option for a variable, you just *create it once, and then set it to different things later.
There can only be one variable called ‘name’, so each time you create a new variable called ‘name’ you are just overwriting the one you already made.