mirror of
https://github.com/evennia/evennia.git
synced 2026-04-04 23:17:17 +02:00
* added skeletons for commands_comsys.py (has all of the MUX2 commands I
* could remember) and functions_comsys.py (has a couple of ideas for * useful functions).
This commit is contained in:
parent
e8674f1848
commit
86e9a8292c
2 changed files with 170 additions and 0 deletions
23
functions_comsys.py
Normal file
23
functions_comsys.py
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
import session_mgr
|
||||
import commands_privileged
|
||||
import commands_general
|
||||
import commands_comsys
|
||||
import commands_unloggedin
|
||||
"""
|
||||
Comsys functions.
|
||||
"""
|
||||
|
||||
def set_new_title(channel, player, title):
|
||||
pass
|
||||
|
||||
def get_com_who(channel, muted=False, disconnected=False):
|
||||
"""
|
||||
Get all users on a channel.
|
||||
|
||||
If muted = True, return users who have it muted as well.
|
||||
If disconnected = True, return users who are not connected as well.
|
||||
"""
|
||||
pass
|
||||
|
||||
def get_user_channels(player):
|
||||
pass
|
||||
Loading…
Add table
Add a link
Reference in a new issue