From 8cac1a7da44ec5e114a9af012f6cd42dac23b16d Mon Sep 17 00:00:00 2001 From: Lukas Date: Sun, 20 Mar 2022 23:51:33 +0100 Subject: [PATCH] add rwf command --- myTS3.py | 6 +++++- src/commands.py | 8 +++----- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/myTS3.py b/myTS3.py index 637116f..d349c9d 100644 --- a/myTS3.py +++ b/myTS3.py @@ -4,7 +4,7 @@ TBD __author__ = "Lukas Mahler" __version__ = "0.0.0" -__date__ = "30.10.2021" +__date__ = "20.03.2022" __email__ = "m@hler.eu" __status__ = "Development" @@ -402,6 +402,7 @@ class TSbot: .mute target .pingall message .rename nickname + .rwf .roll .stop / .quit / .q .test @@ -446,6 +447,9 @@ class TSbot: elif command == ".rename": commands.rename(self, invkr_id, parameter) + elif command == ".rwf": + commands.rwf(self) + elif command == ".roll": pass # TODO needs permission for everyone + targemode implementation diff --git a/src/commands.py b/src/commands.py index 339b390..8afc1e5 100644 --- a/src/commands.py +++ b/src/commands.py @@ -4,7 +4,7 @@ TBD __author__ = "Lukas Mahler" __version__ = "0.0.1" -__date__ = "04.02.2022" +__date__ = "20.03.2022" __email__ = "m@hler.eu" __status__ = "Development" @@ -61,7 +61,7 @@ def help(self, invkr_id): # Find all functions in this submodule 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) @@ -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}" self.bot.sendtextmessage(targetmode=1, target=invkr_id, msg=msg) @@ -207,8 +207,6 @@ def rwf(self): prog_min = prog_done prog_max = len(data['progression']) channelname = f"Sepulcher {prog_min}/{prog_max}" - print(channelname) - exit() try: self.editChannelname(200, channelname)