rankup work in progress
This commit is contained in:
parent
0ac56cf32a
commit
d5e5c40934
4 changed files with 15 additions and 9 deletions
|
|
@ -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.
|
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
|
- Sell only Hercules
|
||||||
- *Hercule Punch*
|
- **Hercule Punch - done**
|
||||||
- SBR,
|
- SBR,
|
||||||
- RankUp,
|
- RankUp,
|
||||||
- Transfer but better,
|
- Transfer but better,
|
||||||
- *BossRush*
|
- **BossRush - done**
|
||||||
- *EzaPLUS (up to 50lvl)* - done
|
- **EzaPLUS (up to 50lvl) - done**
|
||||||
|
|
||||||
# Installation
|
# Installation
|
||||||
|
|
||||||
|
|
|
||||||
Binary file not shown.
17
commands.py
17
commands.py
|
|
@ -2015,10 +2015,17 @@ def rank_up():
|
||||||
else:
|
else:
|
||||||
url = 'http://ishin-production.aktsk.jp/user'
|
url = 'http://ishin-production.aktsk.jp/user'
|
||||||
r = requests.get(url, headers=headers)
|
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()
|
medal_calculator()
|
||||||
elif command == 'ezaplus':
|
elif command == 'ezaplus':
|
||||||
complete_unfinished_zbattles_plus()
|
complete_unfinished_zbattles_plus()
|
||||||
elif command == 'rankup':
|
# elif command == 'rankup':
|
||||||
rank_up()
|
# rank_up()
|
||||||
elif command == 'lrpan':
|
elif command == 'lrpan':
|
||||||
lr_pan()
|
lr_pan()
|
||||||
elif command == 'bossrush':
|
elif command == 'bossrush':
|
||||||
|
|
|
||||||
1
help.txt
1
help.txt
|
|
@ -21,7 +21,6 @@ To stop a command from executing, hold ctrl + c
|
||||||
'info' -> Print out account information.
|
'info' -> Print out account information.
|
||||||
'medalcal' -> Does free LR's
|
'medalcal' -> Does free LR's
|
||||||
'bossrush' -> Does Boss Rush
|
'bossrush' -> Does Boss Rush
|
||||||
'rankup' -> Farms to get your rank up
|
|
||||||
'lrpan' -> Farms LR Pan level
|
'lrpan' -> Farms LR Pan level
|
||||||
'punchmachine' -> Does Punch Machine
|
'punchmachine' -> Does Punch Machine
|
||||||
'items' -> Provides a GUI to view user items.
|
'items' -> Provides a GUI to view user items.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue