add rwf command
This commit is contained in:
parent
d4922f8772
commit
8cac1a7da4
6
myTS3.py
6
myTS3.py
|
@ -4,7 +4,7 @@ TBD
|
||||||
|
|
||||||
__author__ = "Lukas Mahler"
|
__author__ = "Lukas Mahler"
|
||||||
__version__ = "0.0.0"
|
__version__ = "0.0.0"
|
||||||
__date__ = "30.10.2021"
|
__date__ = "20.03.2022"
|
||||||
__email__ = "m@hler.eu"
|
__email__ = "m@hler.eu"
|
||||||
__status__ = "Development"
|
__status__ = "Development"
|
||||||
|
|
||||||
|
@ -402,6 +402,7 @@ class TSbot:
|
||||||
.mute target
|
.mute target
|
||||||
.pingall message
|
.pingall message
|
||||||
.rename nickname
|
.rename nickname
|
||||||
|
.rwf
|
||||||
.roll
|
.roll
|
||||||
.stop / .quit / .q
|
.stop / .quit / .q
|
||||||
.test
|
.test
|
||||||
|
@ -446,6 +447,9 @@ class TSbot:
|
||||||
elif command == ".rename":
|
elif command == ".rename":
|
||||||
commands.rename(self, invkr_id, parameter)
|
commands.rename(self, invkr_id, parameter)
|
||||||
|
|
||||||
|
elif command == ".rwf":
|
||||||
|
commands.rwf(self)
|
||||||
|
|
||||||
elif command == ".roll":
|
elif command == ".roll":
|
||||||
pass # TODO needs permission for everyone + targemode implementation
|
pass # TODO needs permission for everyone + targemode implementation
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@ TBD
|
||||||
|
|
||||||
__author__ = "Lukas Mahler"
|
__author__ = "Lukas Mahler"
|
||||||
__version__ = "0.0.1"
|
__version__ = "0.0.1"
|
||||||
__date__ = "04.02.2022"
|
__date__ = "20.03.2022"
|
||||||
__email__ = "m@hler.eu"
|
__email__ = "m@hler.eu"
|
||||||
__status__ = "Development"
|
__status__ = "Development"
|
||||||
|
|
||||||
|
@ -61,7 +61,7 @@ def help(self, invkr_id):
|
||||||
|
|
||||||
# Find all functions in this submodule
|
# Find all functions in this submodule
|
||||||
cmds = [f[0] for f in inspect.getmembers(sys.modules[__name__], inspect.isfunction)]
|
cmds = [f[0] for f in inspect.getmembers(sys.modules[__name__], inspect.isfunction)]
|
||||||
msg = f"\n\nList of commands:\n---------------------\n.{f'{chr(10)}.'.join(cmds)}"
|
msg = f"List of commands:\n---------------------\n.{f'{chr(10)}.'.join(cmds)}"
|
||||||
self.bot.sendtextmessage(targetmode=1, target=invkr_id, msg=msg)
|
self.bot.sendtextmessage(targetmode=1, target=invkr_id, msg=msg)
|
||||||
|
|
||||||
|
|
||||||
|
@ -70,7 +70,7 @@ def info(self, invkr_id):
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
msg = f"\n\nRuntime: {util.getRuntime(self.started)}\n" \
|
msg = f"Runtime: {util.getRuntime(self.started)}\n" \
|
||||||
f"Version: {self.version}"
|
f"Version: {self.version}"
|
||||||
self.bot.sendtextmessage(targetmode=1, target=invkr_id, msg=msg)
|
self.bot.sendtextmessage(targetmode=1, target=invkr_id, msg=msg)
|
||||||
|
|
||||||
|
@ -207,8 +207,6 @@ def rwf(self):
|
||||||
prog_min = prog_done
|
prog_min = prog_done
|
||||||
prog_max = len(data['progression'])
|
prog_max = len(data['progression'])
|
||||||
channelname = f"Sepulcher {prog_min}/{prog_max}"
|
channelname = f"Sepulcher {prog_min}/{prog_max}"
|
||||||
print(channelname)
|
|
||||||
exit()
|
|
||||||
|
|
||||||
try:
|
try:
|
||||||
self.editChannelname(200, channelname)
|
self.editChannelname(200, channelname)
|
||||||
|
|
Loading…
Reference in New Issue