How I Fix This? else if

I got this error when im trying to do that (images) idk how to fix i think is the indentation but i dont find the way to fix that
image

is this… python? I don’t think else ifs exist in python, instead you use elif

@CloudsAndCastles It’s Verse :+1:

I think your first if (and all the following ones) are not being parsed correctly, maybe try something like this

if(
    Cond1 and
    Cond2
):
    # Do smth
else if(
    Cond3 and
    Cond4
):
    # Do smth

Otherwise try to replace ands with commas :person_shrugging: