mirror of
https://github.com/fishyboteso/fishyboteso.git
synced 2024-08-30 18:32:13 +00:00
14 lines
287 B
Python
14 lines
287 B
Python
import logging
|
|
import time
|
|
|
|
from fishy.engine.IEngine import IEngine
|
|
|
|
|
|
class FullAuto(IEngine):
|
|
def run(self):
|
|
self.gui.bot_started(True)
|
|
while self.start:
|
|
logging.debug("running full auto")
|
|
time.sleep(0.5)
|
|
self.gui.bot_started(False)
|