Hello everyone!
im using VA for a couple of weeks now and it really is amazing.
The only thing i cant get my head around is the way if statements are displayed.
as a web developer im used to the following:
if(CONDITION){
do something
}
elseif(CONDITION) {
do something
}
else {
do something
}
but in voice attack it looks more like:
if(CONDITION){
do something
else
if(CONDITION) {
do something
else
if(CONDITION) {
do something
}
}
}
the reason i find this harder to read is that it seems to go deeper and deeper,
eventho it isn't, because it should check the first condition, if it isnt met, it should check the second one.
maybe it isnt such big deal with the above example, but if you have 'if statements within if statements', its gonna look very messy.
is there a specific reason its done this way?
and what are your opinions ?