elif
If the statement above it didn't execute, 'elif' statement will try to execute if the provided condition is met.
Syntax
elif $condition
Example
if {@sender -> role is "ClassD"}
Print "You are a Class-D."
elif {@sender -> role is "Scientist"}
Print "You are a scientist."
else
Print "You have another role."
end