Advertisement
Guest User

Cheat Cookie Clicker

a guest
Sep 18th, 2013
539
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 2.31 KB | None | 0 0
  1. from base64 import b64encode
  2.  
  3. # Cheat at cookie clicker (http://orteil.dashnet.org/cookieclicker/)
  4. # How to use this:
  5. # After this is downloaded it as cc.py (cc can be anything, I chose cc for Cheat Cookies), run
  6. # it in CMD or Terminal if you have linux with the command:
  7. #  python cc.py
  8. # Enter the amount of items you want, and then take the save string it gives you
  9. # And put it into "Import save", under Menu in cookie clicker.
  10. # Enjoy!
  11.  
  12. # Gather cookie information
  13. start_cookies = raw_input("Enter number of cookies you wish to start out with: ")
  14. cookies_per_click = raw_input("Enter cookies per click you want: ")
  15. cookie_clicks = raw_input("Enter total cookie clicks (Doesn't give you these cookies, only for achievements): ")
  16. all_time_cookies = raw_input("Enter all-time cookies baked (Doesn't give you these cookies, only for achievements): ")
  17. golden_clicks = raw_input("Enter golden cookie clicks (Doesn't give you these golden cookies, only for achievements): ")
  18. hand_made_cookies = raw_input("Enter hand-made cookies (Doesn't give you these cookies, only for achievements): ")
  19.  
  20. # Gather building information
  21. clickers = raw_input("Enter number of Clickers you want: ")
  22. grandmas = raw_input("Enter number of Grandmas you want: ")
  23. farms = raw_input("Enter number of Farms you want: ")
  24. factories = raw_input("Enter number of Factories you want: ")
  25. mines = raw_input("Enter number of Mines you want: ")
  26. shipments = raw_input("Enter number of Shipments you want: ")
  27. alchemy_labs = raw_input("Enter number of Alchemy Labs you want: ")
  28. portals = raw_input("Enter number of Portals you want: ")
  29. time_machines = raw_input("Enter number of Time Machines you want: ")
  30. antimatter_condensers = raw_input("Enter number of Antimatter Condensers you want: ")
  31.  
  32. 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))
  33.  
  34. print "Please enter the following into Menu > Import save:"
  35. print cheat_save
  36.  
  37. exit(0)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement