You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Great little tool ! I really don't know much about python but I tried to compile the code for alarm sounds and although I can get it to work it bugs things out. At the top of the script I added : from playsound import playsound
then in the helltide section I added the code for the playsound wave file, and it works but the timer then bugs out.
def update_timer(self):
next_event, is_active = get_next_helltide_event(self.helltide_times)
if next_event:
now = datetime.utcnow().replace(tzinfo=pytz.utc)
if is_active:
remaining_time = (next_event + timedelta(hours=1)) - now
self.label.config(text=f"Helltide Active: {str(timedelta(seconds=round(remaining_time.total_seconds())))}")
playsound('Helltide-Alarm.wav')
else:
remaining_time = next_event - now
self.label.config(text=f"Until Next Helltide: {str(timedelta(seconds=round(remaining_time.total_seconds())))}")
And for the Boss, an alert like 5 minutes before the pop would be great, but no clue on if that's possible. Any help would be great! Thanks
The text was updated successfully, but these errors were encountered:
Great little tool ! I really don't know much about python but I tried to compile the code for alarm sounds and although I can get it to work it bugs things out. At the top of the script I added :
from playsound import playsound
then in the helltide section I added the code for the playsound wave file, and it works but the timer then bugs out.
And for the Boss, an alert like 5 minutes before the pop would be great, but no clue on if that's possible. Any help would be great! Thanks
The text was updated successfully, but these errors were encountered: