@dfabulich Will you be able to accommodate this request for the next update? If it’s possible, I’d like the *if and *elseif codes to allow us to write options without using *goto at the end of the choice. As it is now, the codes require us to use *goto or *finish at the end of every statement under the *if and *elseif codes. Like this for example:
*if choice = 1
Your choice is one
*goto next
*elseif choice = 2
Your choice is 2
*goto next2
*else
You chose none
*finish
It would be great if we can write it like this instead:
*if choice = 1
Your choice is one
*elseif choice = 2
Your choice is 2
*else
You chose none
*finish
It kinda works like *fake_choice because if any of the conditions are met it goes directly to the next set of commands–in this case, it’s *finish.
