I can't do something like, say, and have it check 'em all.
if(0 to 10) blah
if(10 to 20) blah blah
if(5 to 15) some other blah
if(1 to 20) another blah
ID:17435
![]() Aug 18 2006, 11:14 am
|
|
'cause it's a giant complicated chain of events using one variable in which more than one thing to happen!
|
switch(var)
if(0 to 10) do_say("Low")
if(11 to 20) do_say("Medium")
else say do_say("High")
or whatever....