New build script + bg farming bot v1
This commit is contained in:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user