cant post anywhere else heres gayaonline 1tril/min gold gen. here u go kbai
TinyUpload.com - best file hosting solution, with no limits, totaly free
gayaonline
python3.5
1tril/min
Code:
class SwitchemExploit:
def __init__(self, parent):
self.__session = parent.session
self.__gateway = parent.gateway
self.force_levels = [0, 3, 3, 3, 3, 3, 5, 5, 5, 5, 7, 9, 9, 13, 13, 13, 15, 15]
self.move_string = ""
for game_piece in range(0, 63):
for offset in [-1, 1, -8, 8]:
switch_with = game_piece + offset
if switch_with >= 0:
# DO NOT SPAM -6|-6| INTO STRING WILL BREAK ACCOUNTS
self.move_string += "{from_pos}|{to_pos}|0|".format(from_pos=game_piece, to_pos=switch_with)
def start_exploit(self, billions=1):
def start():
rand_id = random.randint(1000000000, 999999999999999)
total_gold = 0
for force_level in self.force_levels:
gateway_data = self.__gateway.switchem_level_data(rand_id, self.move_string * force_level)
total_gold += gateway_data.output.item
return total_gold
with concurrent.futures.ThreadPoolExecutor(max_workers=10) as exe:
futs = [exe.submit(start) for i in range(10)]
x = [fut.result() for fut in concurrent.futures.as_completed(futs)]
return sum(x)