Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
AroriaNetwork
GitHub Repository: AroriaNetwork/3kho-backup
Path: blob/main/projects/idle-breakout/import_code_gen.py
1834 views
1
# PLEASE READ ME!!!
2
#
3
# Hello!
4
#
5
# Click on Run to start the generator.
6
#
7
# Hope you enjoy!
8
#
9
10
11
import base64
12
13
print("Welcome to the interactive \nIdle Breakout import code generator by 3kh0!\n\nPlease enter numbers for the questions.\n------------------------------------------")
14
15
print("What level you want to be on?")
16
level = input()
17
18
print("------------------------------------------\nHow much money do you want?")
19
money = input()
20
21
print("------------------------------------------\nHow much gold do you want?")
22
gold = input()
23
24
print("------------------------------------------\nHow many Black Boxes do you want?")
25
bb = input()
26
27
print("------------------------------------------\nHow many skillpoints do you want?")
28
sp = input()
29
30
encode = f"{level},{money},{gold},3,0,0,0,0,0,0,0,1,1,0,43595.78,999999,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,{bb},0,0,0,1,{sp},1,0,0"
31
finalCode = encode.encode("UTF-8")
32
result = base64.b64encode(finalCode)
33
34
print("\nGenerating....")
35
print("------------------------------------------\nHere is your code:\n")
36
print(result)
37
print("\nCopy whats INSIDE the single quotes!\n\n------------------------------------------")
38
print("Idle Breakout import code generator by 3kh0.")
39
40