View difference between Paste ID: H51smZTv and rXR178Tz
SHOW: | | - or go back to the newest paste.
1
from base64 import b64encode
2
3
# Please note:
4
# This does not *add* these to your save, rather it just
5
# creates a new game with X amount of items/cookies you want,
6-
# it in CMD or Terminal if you have linux with the command:
6+
# it will reset your achievements and upgrades. 
7
# Cheat at cookie clicker (http://orteil.dashnet.org/cookieclicker/)
8
# How to use this:
9
# After this is downloaded it as cc.py (cc can be anything, I chose cc for Cheat Cookies), run
10
# it in CMD if you have winblows, or Terminal if you have GNU/linux with the command:
11
#  python cc.py
12
# Enter the amount of items you want, and then take the save string it gives you
13
# And put it into "Import save", under Menu in cookie clicker.
14
# Enjoy!
15
16
# Gather cookie information
17
start_cookies = raw_input("Enter number of cookies you wish to start out with: ")
18
cookies_per_click = raw_input("Enter cookies per click you want: ")
19
cookie_clicks = raw_input("Enter total cookie clicks (Doesn't give you these cookies, only for achievements): ")
20
all_time_cookies = raw_input("Enter all-time cookies baked (Doesn't give you these cookies, only for achievements): ")
21
golden_clicks = raw_input("Enter golden cookie clicks (Doesn't give you these golden cookies, only for achievements): ")
22
hand_made_cookies = raw_input("Enter hand-made cookies (Doesn't give you these cookies, only for achievements): ")
23
24
# Gather building information
25
clickers = raw_input("Enter number of Clickers you want: ")
26
grandmas = raw_input("Enter number of Grandmas you want: ")
27
farms = raw_input("Enter number of Farms you want: ")
28
factories = raw_input("Enter number of Factories you want: ")
29
mines = raw_input("Enter number of Mines you want: ")
30
shipments = raw_input("Enter number of Shipments you want: ")
31
alchemy_labs = raw_input("Enter number of Alchemy Labs you want: ")
32
portals = raw_input("Enter number of Portals you want: ")
33
time_machines = raw_input("Enter number of Time Machines you want: ")
34
antimatter_condensers = raw_input("Enter number of Antimatter Condensers you want: ")
35
36
cheat_save=b64encode("1.036||1379454477565|110111|%s;%s;%s;%s;%s;0;-1;-1;0;0;0;0;0;0|%s,0,0,0;%s,0,0,0;%s,0,0,0;%s,0,0,0;%s,0,0,0;%s,0,0,0;%s,0,0,0;%s,0,0,0;%s,0,0,0;%s,0,0,0;|2251799813685249;2251799813685249;2251799813685249;2251799813685249;524289|2251799813685249;8796093022209" % (start_cookies, all_time_cookies, cookie_clicks, golden_clicks, hand_made_cookies, clickers, grandmas, farms, factories, mines, shipments, alchemy_labs, portals, time_machines, antimatter_condensers))
37
38
print "Please enter the following into Menu > Import save:"
39
print cheat_save
40
41
exit(0)