Advertisement
bpoole

Hack to set all Cookie Clicker item prices to 0

Aug 29th, 2013
4,986
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //js hack for http://orteil.dashnet.org/cookieclicker/
  2. //sets the cookie price on all items to 0
  3. obj_length= Game.ObjectsById.length;
  4. for(var i = 0; i < obj_length; i++){
  5.     Game.ObjectsById[i].basePrice = 0;
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement