This is probably a dumb problem to have, but for the life of me I can’t figure out how to indent. If someone could explain to me which keys to press or something like that, that would be great. I’ve tried the tab button, I’ve tried hitting the space bar 10 times, and I’m out of ideas.
1 Like
I forgot my playfic login so can’t check directly right now, but there are a few things you can do.
One is to just put everything on one line (this compiles):
Before opening the envelope: say "hi!"; try jumping; say "oops".
This won’t work for nested if statements, but it does if you use ‘begin’ and ‘end if’:
Before opening the envelope: say "hi!"; if the envelope is open begin; say "it's already open"; end if; try jumping; say "oops".
(These examples are stupid but they compile just fine).
Alternatively, you can just copy and past a tab from an open notepad file. I’ve done that a lot on this website to put tabs in.
4 Likes
Thank you so much! I wasn’t able to get the “begin and end” thing to work, but using the notepad worked great!
1 Like