Suppressing "has left" in TinyMUX
-
There seem to be a few options to suppress the "has left" and "has arrived" tags in TinyMUX.
-
Set the BLIND flag on the location (or player).
It completely suppresses the tags but still executes @*succ and @*fail messages. I don't think it's possible for a parent object to pass its flags to children, however. -
Set @*leave messages.
@leave and @oleave are supposed to decide what the player and others see when you leave a thing or room, but this seems to happen in addition to the tags.
The tags are superfluous in an environment with properly set @*succ @*fail @*drop messages. Is there a better way to remove them than blind every room?
-
-
Off topic, I just wanted to point out they are not totally superfluous since they inform you if someone @tels in without using one of the exits, for example from a +meetme command or even just the old fashioned @tel way.
-
Common building practices enforce @odrop/@osucc, and most @tel usage is softcoded now, which can be coded to do the emits. If not, set an @otport on a Player Parent Object, or set/lock it in CharGen.
-
@ThatGuyThere Perhaps I should have said they are superfluous in my environment with properly set@*succ @*fail and @*drop messages. The rooms are not set as teleport_ok and the area amounts to a game board. It's basically multiplayer IF, with coded areas, NPCs, and the like.
-
I suppose I could set players as BLIND upon entry into the game area, but I'm not sure of a good way to know when to unset that flag. Returning home would bypass the conventional escapes.
Changing the player's parent to a nested parent upon entry runs into the same problem.
I wish there was a way to do like a zone player parent: when you are in this zone, this is your parent.
Any other way to do this besides blinding every single room in the area?
-
Could you give a little more detail on what you're trying to accomplish?
You want players to be able to enter/leave multiple rooms without other players knowing?
-
You can set admin privileges on individual flags, so that a non wizard could not set or unset the Blind flag.
-
@skew said in Suppressing "has left" in TinyMUX:
Could you give a little more detail on what you're trying to accomplish?
You want players to be able to enter/leave multiple rooms without other players knowing?
Hex is wanting to suppress the double message stuff you get when people come in.
Derp walks in through the side door.
Derp has arrived.Derp walks out onto the patio.
Derp has left.That 'has arrived' and 'has left' stuff is superfluous, is what they're saying, and they want to find a way to suppress that default message there.
-
@Derp Ooooh. Ok. Thanks.
Yeah, I can't help! But I understand!