This commit is contained in:
Pawel Orzech 2019-08-09 10:16:26 +01:00
parent c808a44112
commit 99b74b40c5

View file

@ -2677,6 +2677,8 @@ def user_command_executor(command):
rank_up() rank_up()
elif command == 'lrpan': elif command == 'lrpan':
lr_pan() lr_pan()
elif command == 'sbr':
superbattleroad()
elif command == 'bossrush': elif command == 'bossrush':
bossrush() bossrush()
elif command == 'omegafarm': elif command == 'omegafarm':
@ -2767,6 +2769,29 @@ def user_command_executor(command):
print('Command not found.') print('Command not found.')
#################################################################### ####################################################################
def superbattleroad():
print("This will do all of Super Battle Road.")
print("Wait for it...")
#Zeni Stage 711001 Difficulties: [1] AreaID: 711
#Potential Orb Stage 711002 Difficulties: [1] AreaID: 711
#Dragon Stone Stage 711003 Difficulties: [1] AreaID: 711
#Zeni Stage 711004 Difficulties: [1] AreaID: 711
#Potential Orb Stage 711005 Difficulties: [1] AreaID: 711
#Dragon Stone Stage 711006 Difficulties: [1] AreaID: 711
complete_stage('711001', 1)
complete_stage('711002', 1)
complete_stage('711003', 1)
complete_stage('711004', 1)
complete_stage('711005', 1)
complete_stage('711006', 1)
print("It is done.")
####################################################################
def punch_machine(): def punch_machine():
print("This will do all of Hercule Punch levels.") print("This will do all of Hercule Punch levels.")
print("Wait for it...") print("Wait for it...")