diff --git a/vindicta.py b/vindicta.py index 28c06b4..ee93884 100644 --- a/vindicta.py +++ b/vindicta.py @@ -14,14 +14,20 @@ def press_overload(): def press_animate_dead(): bot.press_key(Key.f6) +def press_custom_loot(): + bot.press_key_holding(Key.space, [Key.shift]) + overload = Interval(timedelta(seconds=330), press_overload) animate_dead = Interval(timedelta(minutes=11), press_animate_dead) +looting = Interval(timedelta(seconds=40), press_custom_loot) timer = minutes(120) while timer.ongoing(): overload.check_and_execute() bot.super_random_sleep(500,800) + looting.check_and_execute() + bot.super_random_sleep(500,800) animate_dead.check_and_execute() bot.super_random_sleep(1000, 2000) - +