-> !wants
-> !orgs info
-> special cmd's
-> !assist
-> "afk" for players without active account
-> !loot add <item_ref> <count> => nolonger breaks !account
Changes:
-> grouped !tara, !gaunt, .. into !wb
-> Display the most recent news entry on logon (default: enabled)
-> improved grouping of !items
-> Added the option to authentificate WS connections (Datanet module). This is used in special cases, where the Websocket Server requires the clien tto authentificate itself. (Server sends "#auth", client responds with the auth string)
-> Add main name to relaying (priv <-> org) [default: disabled]
-> Added logon/logoff messages back
-> restricted default access to "dangerous" commands to moderator
-> Added optional logging (Private Channel, Org Channel, Tells, ... disabled by default)

Rewrite of the Tower Module.
-> More verbosity, if enabled in config. by default, GAS and Hot timer only.
-> !hot displays currently hot (and in penalty) sites, and these which go hot in < 60 minutes
-> !attacks filterable by PF and Site
-> display current contract QL's grouped by org: !contracts (requires managed cache)
This commit is contained in:
2021-11-25 14:09:43 +01:00
parent 2d7ecf4883
commit 17c776faec
44 changed files with 1669 additions and 1249 deletions
+3 -3
View File
@@ -46,7 +46,7 @@ class UtilController:
{"char": char.name,
"rank_main": char.access_level["label"]})
@command(command="macro", params=[Any("command1|command2|command3...")], access_level="member",
@command(command="macro", params=[Any("command1|command2|command3...")], access_level="moderator",
description="Execute multiple commands at once")
def macro_cmd(self, request, commands):
commands = commands.split("|")
@@ -58,7 +58,7 @@ class UtilController:
request.reply,
request.conn)
@command(command="echo", params=[Any("message")], access_level="member",
@command(command="echo", params=[Any("message")], access_level="moderator",
description="Echo back a message")
def echo_cmd(self, _, message):
return html.escape(message)
@@ -96,7 +96,7 @@ class UtilController:
bots_connected += f"{_id} - {conn.char_name} ({conn.char_id})\n"
for channel_id, name in self.public_channel_service.get_all_public_channels().items():
pub_channels += f"{name} - <highlight>{channel_id:d}</highlight>\n"
pub_channels += f"{name} - <highlight>{channel_id}</highlight>\n"
for event_type in self.event_service.get_event_types():
event_types += f"{event_type}\n"