From 05b11aafc894569a80f295813f5c1ee80a8fa231 Mon Sep 17 00:00:00 2001 From: Lukas Date: Mon, 21 Mar 2022 00:03:47 +0100 Subject: [PATCH] fixed rwf command --- myTS3.py | 3 +++ src/commands.py | 8 ++++++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/myTS3.py b/myTS3.py index d349c9d..0d1a883 100644 --- a/myTS3.py +++ b/myTS3.py @@ -124,6 +124,9 @@ class TSbot: commands.ticker(self, "") + # Hijacked for WoW + commands.rwf(self) + else: pass diff --git a/src/commands.py b/src/commands.py index 8afc1e5..ea046f2 100644 --- a/src/commands.py +++ b/src/commands.py @@ -196,6 +196,10 @@ def rename(self, invkr_id, parameter): def rwf(self): + """ + Refresh the WoW progress channel, + this is very specific to my use, you can disable this in the config. + """ url = "https://raider.io/api/v1/raiding/progression?raid=sepulcher-of-the-first-ones&difficulty=mythic®ion=world" data = json.loads(requests.get(url).text) @@ -206,10 +210,10 @@ def rwf(self): prog_min = prog_done prog_max = len(data['progression']) - channelname = f"Sepulcher {prog_min}/{prog_max}" + channelname = f"[cspacerC3]Sepulcher {prog_min}/{prog_max}" try: - self.editChannelname(200, channelname) + self.editChannelname(205, channelname) except ts3.query.TS3QueryError: pass