Advertisement
bpoole

Cookie Clicker JS hack for setting custom ticker messages

Aug 29th, 2013
1,283
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. //create your own ticker messages
  3. Game.getNewTicker=function( ){
  4.     var list=[];
  5.     //add as many as you want using the same syntax with a different message in single quotes as shown below
  6.     list.push('Custom message 0');
  7.     list.push('Custom message 1');
  8.     list.push('Custom message 2');
  9.     list.push('Custom message 3');
  10.     list.push('Custom message 4');
  11.     list.push('Custom message 5');
  12.    
  13.     Game.Ticker=choose(list);
  14.     Game.TickerAge=Game.fps*6;
  15.     if (Game.TickerN%2==0) Game.TickerAge=Game.fps*10;
  16.     Game.TickerN++;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement