Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
2

What is the difference between else and elseif?

Asked by 5 years ago

I'm watching some tutorials and they use elseif, and I don't know what it is, because they don't explain it, and I can't find tutorials that explain what is elseif used for.

1 answer

Log in to vote
2
Answered by 5 years ago
Edited 5 years ago

The simple answer is that the else block will run if no other blocks ran and a elseif block will be evaluated if the previous did not run.

Now some examples ........

using else

1local run = true
2 
3if run then
4    print('runs only if  truthy')
5else
6    print('runs if the above did not run')
7end

using elseif

01local run = true
02local run2 = true
03local run3 = true
04 
05if run then
06    print('run first')
07elseif run2 then
08    print('the above did not run. run must be falsy')
09elseif run3 then
10    print('you can chain as many as you want but only the first one that evaluate to true will run')
11else
12    print('none of the above ran')
13end

The above are just some testing setups you can run and turn the variable from true to false.

Also take a look at how Lua treats type as either true or false her

I hope this helps. Please comment if you have any other questions about this code.

0
You made a spelling mistake^•^. I accepted this answer because this give’s an explanation of the question asked with a following example Ziffixture 6913 — 5y
Ad

Answer this question