New build script + bg farming bot v1

This commit is contained in:
2024-09-15 22:36:12 -04:00
parent b8cd6a09ed
commit cdcc70d7de
20 changed files with 188 additions and 20 deletions
+4 -2
View File
@@ -12,6 +12,7 @@ class CLIAgent:
def printMenu(self):
print("Enter a command:")
print("\tH\tHelp.")
print("\tBG\tStart the bg farming agent.")
print("\tF\tStart the fishing agent.")
print("\tQ\tQuit.")
print("$>> ", end='')
@@ -24,8 +25,9 @@ class CLIAgent:
userInput = input()
userInput = str.lower(userInput).strip()
if (userInput == "f"):
self.logger.log("Starting Fishing bot...")
if (userInput == "bg"):
self.mainAgent.startBgBot()
elif (userInput == "f"):
self.mainAgent.startFishBot()
elif (userInput == "h"):
self.printMenu()