How can i make an else statement in if else?
You cannot make one for the if
inside the if
but you can do the opposite logic to act as an else
. For example, if 1=1, do this . . . if 1=2, do that
If statement 1
If 1 equals 1
This acts as the if
in this case
If statement 2
If 1 does not equal 1
This acts as the else
in this case
Any contradictory logic will work because only one will trigger