Added debug mode + fighting agent class
This commit is contained in:
@@ -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"):
|
||||
|
||||
Reference in New Issue
Block a user