18.02.2009, 07:17
There most certainly is.
Check pawn-lang.pdf for information about switch and case statements.
pawn Код:
case 0..200: // case 0, 1, 2 <--> 198, 199, 200.
blah;
default: // Everything else that has no case.
more blah;
~Cueball~