Well, the easiest way to do it is to just stack em up.
Eg;
* Int compare = 5
- equal = event 1
- greater = event 1
- less = ...
* Int compare = 0
- equal = event 2
- greater = event 2
- less = ...
And so on
With the above example; Event 1 is int 5 or more. Event 2 is 0 to 4. This will only work when the int compares are sequenced correctly. If the second int compare went first, it would send the event for everything, but by going last, all the higher options have happened (or not) before reaching it, so only 0 to 4 remains to be checked.