Im trying to make a trigger for a room with NSEW exits. Buft If the char is below level 40 they cant go N or S or E....only W.
And Then send a %echo% message
And two tell %actor% messages.
But i Can only Seem to block one of the dirs. And it only sends the %echo% message, not the two tells.
Anyone ever tried something similar ?
Right now im trying:
Code:
if %actor.level% < 40 && %direction% == north || %direction% == east ||
%direction% == south
return 0
%echo% bla bla bla
wait 1 s
tell %actor% bla bla bla
tell %actor% bla bla bla
end
If i try go any of the 3 directions then im stopped and i get the echo message, not the 2 tells.
BUT if i try walk in any of the dirs 2 times in a row, then i stopped 1st time with the echo, but second time i pass anyway
Whats up ?