Added debug mode + fighting agent class

This commit is contained in:
2024-09-22 16:00:48 -04:00
parent 29f9ce5140
commit 9b0fe2183b
20 changed files with 87 additions and 28 deletions
+3
View File
@@ -13,6 +13,7 @@ class CLIAgent:
print("Enter a command:")
print("\tH\tHelp.")
print("\tBG\tStart the bg farming agent.")
print("\tC\tToggle fight mode ON/OFF.")
print("\tF\tStart the fishing agent.")
print("\tQ\tQuit.")
print("$>> ", end='')
@@ -27,6 +28,8 @@ class CLIAgent:
if (userInput == "bg"):
self.mainAgent.startBgBot()
elif (userInput == "c"):
self.mainAgent.toggleFightingAgent()
elif (userInput == "f"):
self.mainAgent.startFishBot()
elif (userInput == "h"):