BeipMU: Difference between revisions
From Flexible Survival
Jump to navigationJump to search
Created page |
Add chat separator |
||
| Line 25: | Line 25: | ||
This utilises the pseudo-[[GMCP]] support currently in place as a beta-level feature on Flexible Survival. | This utilises the pseudo-[[GMCP]] support currently in place as a beta-level feature on Flexible Survival. | ||
== Chat separator == | |||
<nowiki> | |||
Version=301 | |||
Connections | |||
{ | |||
Triggers | |||
{ | |||
{ | |||
Description="Chat separator" | |||
Example="[Public] This is a test message " | |||
OncePerLine=true | |||
FindString | |||
{ | |||
MatchText="^\\[(Public|WC|Newbie|LFG|Theme|Market|Badges|Dev|Pickup|RP|Naughty|Judge)\\] (.+)$" | |||
RegularExpression=true | |||
MatchCase=true | |||
} | |||
Spawn | |||
{ | |||
Active=true | |||
Title="\\1" | |||
TabGroup="Comm channels" | |||
} | |||
} | |||
} | |||
} | |||
</nowiki> | |||
[[Category:UI Guides]] | [[Category:UI Guides]] | ||
Revision as of 02:05, 22 April 2021
BeipMU is a MUCK client available from https://beipdev.github.io/BeipMU/ for Windows systems, although most features also runs very well under wine on linux and MacOS. There is also a discord server available for assistance in using it.
Useful features
- 256-color support
- SSL/TLS connections
- Scriptable
- Designed for ease of use
- Supports stat panes from Flexible Survival with zero setup!
Quickstart
- In the connection window, add a new server and fill in
flexiblesurvival.com:2222as the port. (Other ports listed on the main page will work too, but lack SSL/TLS support). - Create a new character under that server and fill in
connect <name> <password>as the connect string to automatically log you in as that character. - Click 'Connect'
Special features

Fully automated stat panes! Just run the command livestats #on after connecting, and some additional windows should appear showing you various attributes of your character. The information within will also update in (near-)realtime.
This utilises the pseudo-GMCP support currently in place as a beta-level feature on Flexible Survival.
Chat separator
Version=301
Connections
{
Triggers
{
{
Description="Chat separator"
Example="[Public] This is a test message "
OncePerLine=true
FindString
{
MatchText="^\\[(Public|WC|Newbie|LFG|Theme|Market|Badges|Dev|Pickup|RP|Naughty|Judge)\\] (.+)$"
RegularExpression=true
MatchCase=true
}
Spawn
{
Active=true
Title="\\1"
TabGroup="Comm channels"
}
}
}
}