You can add more than one "on text" event in the same scriptfile.
on *:TEXT:
beer*:#: { some code }
on *:TEXT:
wine*:#: { some other code }
... this would work.
Now, if you decide to use my approach instead (and merge different things in one on-text-event):
You just cannot have an
identical on text event in the
same scriptfile (not a second on *:TEXT:
*:#: { codes for if ($1 == beer) etc } ).
With "identical event" I mean identical in all three of
<level>:TEXT:
<matchtext>:
<target>:<commands>
Separate scriptfiles with identical event definitions would work, but the idea was to use one event for all your "bar activities"
