diff --git a/README.md b/README.md index a4d04d9..dc49909 100644 --- a/README.md +++ b/README.md @@ -25,12 +25,12 @@ Just grab a copy of master repo and go on. Feel free to add feature requests. I'm gonna try and add as much as I can with my spare time. Bot already can do pretty much anything. - Sell only Hercules -- *Hercule Punch* +- **Hercule Punch - done** - SBR, - RankUp, - Transfer but better, -- *BossRush* -- *EzaPLUS (up to 50lvl)* - done +- **BossRush - done** +- **EzaPLUS (up to 50lvl) - done** # Installation diff --git a/__pycache__/commands.cpython-37.pyc b/__pycache__/commands.cpython-37.pyc index 2a313fb..43932b1 100644 Binary files a/__pycache__/commands.cpython-37.pyc and b/__pycache__/commands.cpython-37.pyc differ diff --git a/commands.py b/commands.py index eed0c08..a3825ba 100644 --- a/commands.py +++ b/commands.py @@ -2015,10 +2015,17 @@ def rank_up(): else: url = 'http://ishin-production.aktsk.jp/user' r = requests.get(url, headers=headers) - user = r.json() + current_rank = r.json()['user']['rank'] + + print('Your current rank is: ' +str(current_rank)) + goal_rank = int(input('What rank would you like to achieve? \n')) + print('Ok, farming till rank: ' +(goal_rank)) + + levels_to_farm = (goal_rank) - (current_rank) + print('Levels to farm: ' +str(levels_to_farm)) + + - print('Your current rank is: ' + str(user['user']['rank'])) - print('What rank would you like to achieve?') #################################################################### @@ -2650,8 +2657,8 @@ def user_command_executor(command): medal_calculator() elif command == 'ezaplus': complete_unfinished_zbattles_plus() - elif command == 'rankup': - rank_up() + # elif command == 'rankup': + # rank_up() elif command == 'lrpan': lr_pan() elif command == 'bossrush': diff --git a/help.txt b/help.txt index bbd3275..d7225a1 100644 --- a/help.txt +++ b/help.txt @@ -21,7 +21,6 @@ To stop a command from executing, hold ctrl + c 'info' -> Print out account information. 'medalcal' -> Does free LR's 'bossrush' -> Does Boss Rush -'rankup' -> Farms to get your rank up 'lrpan' -> Farms LR Pan level 'punchmachine' -> Does Punch Machine 'items' -> Provides a GUI to view user items.