The trigger below fires, when the complete (stupid) sentence 'test ing
hop jump'. If the Numeric arg had been 1, it would fire on 'test', 'ing', 'test
ing', and even 'test hop' or 'hop' alone.
Trigger Intended Assignment: Rooms
Trigger Type: Speech , Numeric Arg: 0, Arg list: test ing hop jump
Commands:
%echo% The trigger fires now!
The trigger fires every time the zone resets and removes a door, if any, to
the north from room 4067.
Trigger Intended Assignment: Rooms
Trigger Type: Zone reset , Numeric Arg: 100, Arg list:
Commands:
wdoor 4067 north purge 0
wecho As if by magic all the tapestries rise to their previous positions.
This trigger activates every time anyone enters the room. If returning 0 the
person won't be allowed to enter. This can be used to block too high level
people:
Trigger Intended Assignment: Rooms
Trigger Type: Enter , Numeric Arg: 100, Arg list:
Commands:
if (%actor.level% > 10)
%send% %actor% You're too old to enter here.
return 0
end