i keep getting an “It is illegal to fall in to an *else statement” on line 7662 which is:
"*elseif ((next_destination = "Blue Banner") and (greenbanner))"
*label determine_next_destination
*comment started with purplebanner
*if ((next_destination = "Purple Banner") and (bluebanner))
*set next_destination "Blue Banner"
*goto blue_banner_scene
*elseif ((next_destination = "Purple Banner") and (greenbanner))
*set next_destination "Green Banner"
*goto green_banner_scene
*elseif ((next_destination = "Purple Banner") and (yellowbanner))
*set next_destination "Yellow Banner"
*goto yellow_banner_scene
*elseif ((next_destination = "Purple Banner") and (blackbanner))
*set next_destination "Black Banner"
*goto black_banner_scene
*comment started with Blue Banner
*elseif ((next_destination = "Blue Banner") and (greenbanner))
*set next_destination "Green Banner"
*goto green_banner_scene
*elseif ((next_destination = "Blue Banner") and (yellowbanner))
*set next_destination "Yellow Banner"
*goto yellow_banner_scene
*elseif ((next_destination = "Blue Banner") and (blackbanner))
*set next_destination "Black Banner"
*goto black_banner_scene
*comment started with Green Banner
*elseif ((next_destination = "Green Banner") and (yellowbanner))
*set next_destination "Yellow Banner"
*goto yellow_banner_scene
*elseif ((next_destination = "Green Banner") and (blackbanner))
*set next_destination "Black Banner"
*goto black_banner_scene
*comment started with yellow banner
*elseif ((next_destination = "Yellow Banner") and (blackbanner))
*set next_destination "Black Banner"
*goto black_banner_scene
*elseif ((next_destination = "Black Banner") and (not(blackbanner)))
*goto home_base
*else
*goto home_base
I can’t figure out what’s different about that specific line, any ideas? I have a feeling I’m missing something super obvious