Thread: Quest questions
View Single Post
  #2  
Old 01-02-2016, 08:26 PM
tearinall
Fire Beetle
 
Join Date: Oct 2012
Posts: 9
Default

Yes
Code:
if ($value == 5) {
  ## do this stuff
}
elsif ($value == 6) {
  ## do this stuff instead
}
elsif ($value == 8) {
  ## no no, do this stuff
}
else {
  ## no previous conditionals met so do this
}
Reply With Quote