What I hate most about C2 is the way it looks at all the events at the same time.
Lets say I want to implement the following condition:
(function input is a string that can be virtually any):
if input = 123 then ....
if input = 2414 then ....
if input = 432 then ....
if input = 4343 then ....
if input = 1223 then ....
ELSE (if any other input value) then ...
Is there an efficient way to do this??