scholarlytutor @ Thu Nov 05, 2020 7:23 pm wrote:
Looks like you know that you need both of these:
forward procedure enemyturn
forward procedure startgame
Put them before writing any of your other procedures (I put them on lines 34 and 35 of your code). Basically, procedures must be declared before they're used, so anytime you want to use the 'forward' technique to reference procedures that are written later in your program, put those forward statements right near the top of your program.
Also, don't forget to write body when writing the procedure you forwarded! (I believe you forgot to write body for your startgame function).
Thank you so much! My program is saved yahoooo
i wasnt sure hwo to properaly use the forward and body command thanks for clearing that up for me