Skip to content

Commit

Permalink
Update README with new aliases
Browse files Browse the repository at this point in the history
  • Loading branch information
demonnic committed Oct 2, 2021
1 parent 3e8251c commit 54823da
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions README.md
Expand Up @@ -26,3 +26,19 @@ Will start on the right side, attached to the right border. Resize, move, adjust
* set whether it should add a timestamp at the front
* `lct blankLine`
* set whether it should automatically add a newline to things echoed.
* `lct gaglist`
* lists the mobs and lines being gagged in the chat tabs.
* `lct gagmob <Lua pattern>`
* add a Lua pattern to check speakers against. See [this tutorial from lua-users.org](http://lua-users.org/wiki/PatternsTutorial) for more information. If the speaker matches the pattern, anything they say or emote on any channel will be gagged from the tabbed chat consoles. Does not affect the main window. Uses gmcp.Comm.Channel.Text.talker to make the determination.
* `lct gagmob Abeytu`
* gags any mob with "Abeytu" in the speaker name in gmcp.
* `lct gagmob a sick .+ child`
* gags `a sick human child` and `a sick merian child` and `a sick kepheran child` etc
* `lct ungagmob <Lua pattern>`
* Removes a lua pattern from the gagged mobs list.
* `lct gag <Lua pattern>`
* add a Lua pattern to check lines against. See [this tutorial from lua-users.org](http://lua-users.org/wiki/PatternsTutorial) for more information. If the content of the line matches any of the patterns then the line will be gagged from the tabbed chat consoles. Does not affect the main window.
* `lct gag .- shouts "I love cheese!"`
* will gag anyone shouting "I love cheese!"
* `lct ungag <Lua pattern>`
* removes a lua pattern from the gagged lines list.

0 comments on commit 54823da

Please sign in to comment.