<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[[BeipMU] Removing pose order spam from Ares games.]]></title><description><![CDATA[<p dir="auto">EDIT:  Please use <a class="plugin-mentions-user plugin-mentions-a" href="https://brandmu.day/uid/7">@Roz</a>’s suggestion.  It’s much better!</p>
<p dir="auto"><img src="https://i.gyazo.com/63c8819e11dcaa1087f8e681e6ad0507.png" alt="alt text" class=" img-fluid img-markdown" /></p>
<p dir="auto">ORIGINAL POST:</p>
<p dir="auto">(Posting this in case it helps anyone)</p>
<p dir="auto">If you ever find yourself wanting to get rid of the spam saying<br />
<strong>%% You can pose again in scene ###</strong><br />
from any Ares game, here is an easy way to do it in BeipMU:</p>
<p dir="auto">First, create a new trigger and fill out the initial page like so:</p>
<p dir="auto"><img src="https://i.gyazo.com/748dec11733ad56750f371b3a879baf9.png" alt="alt text" class=" img-fluid img-markdown" /></p>
<p dir="auto">Once you have done that, click on the <strong>Misc</strong> tab in the bottom right section to get to this screen:</p>
<p dir="auto"><img src="https://i.gyazo.com/2719ca5169937a9f6ac8dd16828386f8.png" alt="alt text" class=" img-fluid img-markdown" /></p>
<p dir="auto">Make sure the <strong>Gag this line (don’t display it)</strong> is checked.  You can check the log file one too if you’d like, but that’s up to personal preference.</p>
<p dir="auto">Click <strong>Apply</strong></p>
<p dir="auto">You should be all good now.  Hope this helps other people in super huge 3PR scenes!</p>
]]></description><link>https://brandmu.day/topic/398/beipmu-removing-pose-order-spam-from-ares-games</link><generator>RSS for Node</generator><lastBuildDate>Sat, 04 Apr 2026 11:31:54 GMT</lastBuildDate><atom:link href="https://brandmu.day/topic/398.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 22 Jul 2023 21:19:54 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to [BeipMU] Removing pose order spam from Ares games. on Mon, 25 Mar 2024 17:57:28 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://brandmu.day/uid/3">@Tez</a> said in <a href="/post/22918">[BeipMU] Removing pose order spam from Ares games.</a>:</p>
<blockquote>
<p dir="auto">less consistency about putting \ before my &lt; and &gt;</p>
</blockquote>
<p dir="auto">I only do it so I can look at it and know, “Right, it is checking for the actual &lt; not some weird control character I’ve forgotten and need to look up.” <img src="https://brandmu.day/assets/plugins/nodebb-plugin-emoji/emoji/android/1f61b.png?v=ad502f21e27" class="not-responsive emoji emoji-android emoji--stuck_out_tongue" style="height:23px;width:auto;vertical-align:middle" title=":P" alt="😛" /></p>
]]></description><link>https://brandmu.day/post/22926</link><guid isPermaLink="true">https://brandmu.day/post/22926</guid><dc:creator><![CDATA[Pavel]]></dc:creator><pubDate>Mon, 25 Mar 2024 17:57:28 GMT</pubDate></item><item><title><![CDATA[Reply to [BeipMU] Removing pose order spam from Ares games. on Mon, 25 Mar 2024 17:09:33 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://brandmu.day/uid/44">@dvoraen</a> said in <a href="/post/22922">[BeipMU] Removing pose order spam from Ares games.</a>:</p>
<blockquote>
<p dir="auto">I forget how Ares sends poses to players on a client, since it’s been a while for me. If the first character is literally &lt; (i.e., only the pose is sent and not a nospoof like the PC who sent the pose) then it will happen as I’ve outlined.</p>
</blockquote>
<p dir="auto">Also if someone does a <code>&lt;OOC&gt; Faraday waves.</code> or FS3 combat messages, which are prefixed by <code>&lt;FS3Combat&gt; Faraday is knocked out.</code> or ASCII art, or any paragraph that starts with &lt; for some reason.</p>
<p dir="auto">Really specific channel names is the safer way to go.</p>
]]></description><link>https://brandmu.day/post/22924</link><guid isPermaLink="true">https://brandmu.day/post/22924</guid><dc:creator><![CDATA[Faraday]]></dc:creator><pubDate>Mon, 25 Mar 2024 17:09:33 GMT</pubDate></item><item><title><![CDATA[Reply to [BeipMU] Removing pose order spam from Ares games. on Mon, 25 Mar 2024 16:10:33 GMT]]></title><description><![CDATA[<p dir="auto">A random aside, but I wanted to comment on the regex patterns being displayed here. This will be pedantic.</p>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://brandmu.day/uid/7">@Roz</a> 's pattern of <code>^(&lt;.+&gt;).*</code> will get the job done, but you will get false positives from it. <em>Anything</em> Ares sends to your client that starts with <code>&lt;</code>, has text, and ends with <code>&gt;</code>, including poses from a player, will potentially be seen by this pattern and match, getting you a potential spawn window if they should start* their pose with something like <code>&lt;Meanwhile...&gt;</code>. Will that happen often? I imagine next to never, but I did want to bring up this slight possibility.</p>
<p dir="auto">On the other hand, <a class="plugin-mentions-user plugin-mentions-a" href="https://brandmu.day/uid/4">@Pavel</a>’s and <a class="plugin-mentions-user plugin-mentions-a" href="https://brandmu.day/uid/3">@Tez</a>’s patterns will exact-match channel names, but if you want to add more channels, you have to verbatim copy in the channel to the pattern for every one you want a spawn window for, and the opposite for those you don’t want one.</p>
<p dir="auto">So in short, it depends on how invested you are in the outcome. Want a specific subset of channels? Go with option B where the channel names are spelled out in the pattern. Want a catch-all? Option A.</p>
<p dir="auto">* (ETA) I forget how Ares sends poses to players on a client, since it’s been a while for me. If the first character is literally <code>&lt;</code> (i.e., only the pose is sent and not a nospoof like the PC who sent the pose) then it will happen as I’ve outlined.</p>
]]></description><link>https://brandmu.day/post/22922</link><guid isPermaLink="true">https://brandmu.day/post/22922</guid><dc:creator><![CDATA[dvoraen]]></dc:creator><pubDate>Mon, 25 Mar 2024 16:10:33 GMT</pubDate></item><item><title><![CDATA[Reply to [BeipMU] Removing pose order spam from Ares games. on Mon, 25 Mar 2024 14:44:57 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://brandmu.day/uid/38">@Tributary</a><br />
The Ares escape is a <code>\</code>. <code>help formatting</code> has all the dirty deets.</p>
]]></description><link>https://brandmu.day/post/22921</link><guid isPermaLink="true">https://brandmu.day/post/22921</guid><dc:creator><![CDATA[Trashcan]]></dc:creator><pubDate>Mon, 25 Mar 2024 14:44:57 GMT</pubDate></item><item><title><![CDATA[Reply to [BeipMU] Removing pose order spam from Ares games. on Mon, 25 Mar 2024 13:34:29 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://brandmu.day/uid/3">@Tez</a> For regex, <code>[</code> is a control character, a symbol with meaning to the language, and <code>&lt;</code> is not. So you have to escape [ with <code>\[</code> while you do not need to do so with <code>&lt;</code>. The <code>\</code> lets regex know to use the literal <code>[</code>.</p>
<p dir="auto">So this works if the channels look like <code>&lt;Chat&gt;</code> but not if they look like <code>[Chat]</code>.</p>
<p dir="auto">Just like in MUX you needed to escape <code>%</code> because it was a control character (think <code>%r</code>) but you don’t need to do so in Ares or Evennia because those code bases do not use <code>%</code> as a control character, even though they both recognize <code>%r</code> as special. For Evennia, things are escaped with <code>|</code>. I’m not sure about Ares.</p>
]]></description><link>https://brandmu.day/post/22920</link><guid isPermaLink="true">https://brandmu.day/post/22920</guid><dc:creator><![CDATA[Tributary]]></dc:creator><pubDate>Mon, 25 Mar 2024 13:34:29 GMT</pubDate></item><item><title><![CDATA[Reply to [BeipMU] Removing pose order spam from Ares games. on Mon, 25 Mar 2024 13:17:53 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://brandmu.day/uid/4">@Pavel</a> said in <a href="/post/22916">[BeipMU] Removing pose order spam from Ares games.</a>:</p>
<blockquote>
<p dir="auto">Though personally I just use the channel names like so:</p>
<pre><code>^\&lt;(Chat|Questions|PM|RP Requests)\&gt;
</code></pre>
</blockquote>
<p dir="auto">This is what I do too:</p>
<pre><code>^&lt;(CharGen|Chat|RP Requests|Questions|Game|Staff|PM|Events)\&gt;
</code></pre>
<p dir="auto">Literally basically the same thing only with less consistency about putting \ before my &lt; and &gt;. KEEP EM GUESSING.</p>
]]></description><link>https://brandmu.day/post/22918</link><guid isPermaLink="true">https://brandmu.day/post/22918</guid><dc:creator><![CDATA[Tez]]></dc:creator><pubDate>Mon, 25 Mar 2024 13:17:53 GMT</pubDate></item><item><title><![CDATA[Reply to [BeipMU] Removing pose order spam from Ares games. on Mon, 25 Mar 2024 04:49:30 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://brandmu.day/uid/70">@Testament</a></p>
<p dir="auto">ETA: Okay the stupid forum keeps eating the backslashes from the regex. In beip’s trigger page thing, bottom left there’s a bunch of premade ones. Look in there for the spawn windows folder, and in there’s one called “Tabs for any channel matching a pattern.” In there change the outer-most square brackets to whatever symbol the game uses. Don’t change anything else and it should work fine.</p>
<p dir="auto">You’ll also need to drag that from the bottom left box to the top left box under the appropriate game.</p>
<p dir="auto">Though personally I just use the channel names like so:</p>
<pre><code>^\&lt;(Chat|Questions|PM|RP Requests)\&gt;
</code></pre>
]]></description><link>https://brandmu.day/post/22916</link><guid isPermaLink="true">https://brandmu.day/post/22916</guid><dc:creator><![CDATA[Pavel]]></dc:creator><pubDate>Mon, 25 Mar 2024 04:49:30 GMT</pubDate></item><item><title><![CDATA[Reply to [BeipMU] Removing pose order spam from Ares games. on Mon, 25 Mar 2024 03:45:00 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://brandmu.day/uid/7">@Roz</a> said in <a href="/post/22914">[BeipMU] Removing pose order spam from Ares games.</a>:</p>
<blockquote>
<p dir="auto">Or if it’s a reasonable number of channels, I’d probably just set it up with the actual channel names.</p>
</blockquote>
<p dir="auto">That’s what I’ve always done.  Angle brackets was the standard on PennMUSH for channels so it was necessary to distinguish channels from OOC and such.</p>
]]></description><link>https://brandmu.day/post/22915</link><guid isPermaLink="true">https://brandmu.day/post/22915</guid><dc:creator><![CDATA[Faraday]]></dc:creator><pubDate>Mon, 25 Mar 2024 03:45:00 GMT</pubDate></item><item><title><![CDATA[Reply to [BeipMU] Removing pose order spam from Ares games. on Mon, 25 Mar 2024 03:17:42 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://brandmu.day/uid/70">@Testament</a> Ares uses <code>&lt; &gt;</code> by default, although it’s an easy config for individual games to set, so it’s gonna vary. But yeah, your regex there looks like it’s looking for <code>[ ]</code> brackets, so if you’re on a game with <code>&lt; &gt;</code> instead, it’s not gonna work.</p>
<p dir="auto">Your regex as-is already seems to throw an error if I drop it into <a href="http://regexr.com" target="_blank" rel="noopener noreferrer nofollow ugc">regexr.com</a>, so I’m not 100% on what its translation is. (I am only a dabbler!) I think <code>^(&lt;.+&gt;).*</code> should work?</p>
<p dir="auto">But depending on the Ares game, just doing a raw catch for anything with the brackets could cause issues, because the default for OOC chatter and PMs also use angled brackets. If Beip can do exclusions, you could put those there, though! Or if it’s a reasonable number of channels, I’d probably just set it up with the actual channel names.</p>
]]></description><link>https://brandmu.day/post/22914</link><guid isPermaLink="true">https://brandmu.day/post/22914</guid><dc:creator><![CDATA[Roz]]></dc:creator><pubDate>Mon, 25 Mar 2024 03:17:42 GMT</pubDate></item><item><title><![CDATA[Reply to [BeipMU] Removing pose order spam from Ares games. on Mon, 25 Mar 2024 02:48:59 GMT]]></title><description><![CDATA[<p dir="auto">ARISE CHICKEN</p>
<p dir="auto">I understand that this isn’t exactly the topic, but it <em>is</em> BeipMU and Ares related, so I figured it worked.</p>
<p dir="auto">How the ever living <em>fuck</em> does one create a proper spawn window for comm channels on Ares games? It’s probably something really dumb and simplistic, but I’ve been so used to using this in Matcharoo in the Spawn tab of Triggers in Settings</p>
<pre><code>^[([^&rsqb;&rsqb;+)]
</code></pre>
<p dir="auto">But for whatever reason, this does not work on Ares games. In my normie non-coder brain, I suspect it’s because Ares use &lt;Channel&gt; as opposed to a lot of other gamebases using [Channel], but I’m probably wrong.</p>
<p dir="auto">If anyone could give me guidance on how to get it to work, I would be ever so grateful.</p>
]]></description><link>https://brandmu.day/post/22913</link><guid isPermaLink="true">https://brandmu.day/post/22913</guid><dc:creator><![CDATA[Testament]]></dc:creator><pubDate>Mon, 25 Mar 2024 02:48:59 GMT</pubDate></item><item><title><![CDATA[Reply to [BeipMU] Removing pose order spam from Ares games. on Sat, 22 Jul 2023 21:29:24 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://brandmu.day/uid/15">@Rucket</a> 100% relatable content tbh</p>
]]></description><link>https://brandmu.day/post/17504</link><guid isPermaLink="true">https://brandmu.day/post/17504</guid><dc:creator><![CDATA[sao]]></dc:creator><pubDate>Sat, 22 Jul 2023 21:29:24 GMT</pubDate></item><item><title><![CDATA[Reply to [BeipMU] Removing pose order spam from Ares games. on Sat, 22 Jul 2023 21:27:51 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://brandmu.day/uid/15">@Rucket</a> <a class="plugin-mentions-user plugin-mentions-a" href="https://brandmu.day/uid/7">@Roz</a><br />
<img src="https://media.tenor.com/CnJwaDeVfZsAAAAC/i-have-never-done-anything-wrong-ever-in-my-life.gif" alt="done nothing wrong" class=" img-fluid img-markdown" /></p>
<p dir="auto">I’ll let you two figure out who is who.</p>
]]></description><link>https://brandmu.day/post/17503</link><guid isPermaLink="true">https://brandmu.day/post/17503</guid><dc:creator><![CDATA[dvoraen]]></dc:creator><pubDate>Sat, 22 Jul 2023 21:27:51 GMT</pubDate></item><item><title><![CDATA[Reply to [BeipMU] Removing pose order spam from Ares games. on Sat, 22 Jul 2023 21:23:13 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://brandmu.day/uid/7">@Roz</a> said in <a href="/post/17501">[BeipMU] Removing pose order spam from Ares games.</a>:</p>
<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://brandmu.day/uid/15">@Rucket</a> …buddy.</p>
<blockquote>
<p dir="auto">pose/nudge &lt;on, off or gag&gt; - Controls whether the game tells you when it’s your turn.</p>
</blockquote>
</blockquote>
<p dir="auto">ROFL.  I didn’t even catch this.</p>
<p dir="auto">But this is good to know!</p>
]]></description><link>https://brandmu.day/post/17502</link><guid isPermaLink="true">https://brandmu.day/post/17502</guid><dc:creator><![CDATA[Rucket]]></dc:creator><pubDate>Sat, 22 Jul 2023 21:23:13 GMT</pubDate></item><item><title><![CDATA[Reply to [BeipMU] Removing pose order spam from Ares games. on Sat, 22 Jul 2023 21:22:12 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://brandmu.day/uid/15">@Rucket</a> …buddy.</p>
<blockquote>
<p dir="auto">pose/nudge &lt;on, off or gag&gt; - Controls whether the game tells you when it’s your turn.</p>
</blockquote>
]]></description><link>https://brandmu.day/post/17501</link><guid isPermaLink="true">https://brandmu.day/post/17501</guid><dc:creator><![CDATA[Roz]]></dc:creator><pubDate>Sat, 22 Jul 2023 21:22:12 GMT</pubDate></item></channel></rss>