Dominion Strategy Forum

Please login or register.

Login with username, password and session length
Pages: 1 ... 4 5 [6] 7 8 9  All

Author Topic: Cookie Clicker?  (Read 105113 times)

0 Members and 1 Guest are viewing this topic.

SirPeebles

  • Cartographer
  • *****
  • Offline Offline
  • Posts: 3249
  • Respect: +5459
    • View Profile
Re: Cookie Clicker?
« Reply #125 on: May 29, 2014, 01:00:31 pm »
0

The Easter Update is finally up on the beta.  Nonillion cookies...

Have you managed to get every egg yet?

Yesterday I finished getting every upgrade and got Transcendence (Reset your game with 1 septillion cookies baked).  All that's left are Dr. T (400 Cursors) and Obliterate (Reset your game with 1 octillion cookies baked), neither of which feels plausibly attainable.

You got 200 Prisms?

Yup, on Sunday.
Logged
Well you *do* need a signature...

werothegreat

  • Adventurer
  • ******
  • Offline Offline
  • Posts: 8172
  • Shuffle iT Username: werothegreat
  • Let me tell you a secret...
  • Respect: +9625
    • View Profile
Re: Cookie Clicker?
« Reply #126 on: August 25, 2014, 12:35:59 pm »
0

New update in beta!  Three new buildings!  More achievements!  Revamped prestige!  I'm making over 100 sextillion cookies per second!  Ahhhh!
Logged
Contrary to popular belief, I do not run the wiki all on my own.  There are plenty of other people who are actively editing.  Go bother them!

Check out this fantasy epic adventure novel I wrote, the Broken Globe!  http://www.amazon.com/Broken-Globe-Tyr-Chronicles-Book-ebook/dp/B00LR1SZAS/

KingZog3

  • Cartographer
  • *****
  • Offline Offline
  • Posts: 3163
  • Respect: +1380
    • View Profile
Re: Cookie Clicker?
« Reply #127 on: August 25, 2014, 12:39:31 pm »
0

New update in beta!  Three new buildings!  More achievements!  Revamped prestige!  I'm making over 100 sextillion cookies per second!  Ahhhh!

Which one should I be playing? the beta or the live version?
Logged

werothegreat

  • Adventurer
  • ******
  • Offline Offline
  • Posts: 8172
  • Shuffle iT Username: werothegreat
  • Let me tell you a secret...
  • Respect: +9625
    • View Profile
Re: Cookie Clicker?
« Reply #128 on: August 25, 2014, 12:43:22 pm »
0

New update in beta!  Three new buildings!  More achievements!  Revamped prestige!  I'm making over 100 sextillion cookies per second!  Ahhhh!

Which one should I be playing? the beta or the live version?

Beta.  Live hasn't been updated yet.  You can import your live save into the beta - I'm planning on export my current beta save back into the live version once it updates, with all the niggling bugs fixed.
Logged
Contrary to popular belief, I do not run the wiki all on my own.  There are plenty of other people who are actively editing.  Go bother them!

Check out this fantasy epic adventure novel I wrote, the Broken Globe!  http://www.amazon.com/Broken-Globe-Tyr-Chronicles-Book-ebook/dp/B00LR1SZAS/

Dsell

  • Saboteur
  • *****
  • Offline Offline
  • Posts: 1290
  • He/Him
  • Respect: +932
    • View Profile
Re: Cookie Clicker?
« Reply #129 on: August 26, 2014, 02:05:31 am »
0

Bicentennial with the beta update. Everything except Black Cat's Paw!
Logged
"Quiet you, you'll lynch Dsell when I'm good and ready" - Insomniac


Winner of Forum Survivor Season 2!

DStu

  • Margrave
  • *****
  • Offline Offline
  • Posts: 2627
  • Respect: +1490
    • View Profile
Re: Cookie Clicker?
« Reply #130 on: August 27, 2014, 09:42:12 am »
0

But I have the impression that buildup is much slower now.  Made a mistake by to taking the golden cookie upgrades with me from my HCs but the best kitten and prisms update.
Now I'm sitting here with 3 time machines and building up to the Frenzy+Lucky cap, still now Prisms in sight for a long time.  But at least I have the golden updates myself, but I guess it's much faster to get there if you have the expensive ones from the beginning.

Anyway I can really imagine how that scales much better than before, already have 180 grandmas without them buffing Timemachines, and there are still ACs and Prisms (and Bingo) to come to make them more efficient, and each 15 grandmas counteract the price increase of buying a building...

edit: also, I could already afford prisms, but I'm still buying Portals as they are more efficient once you have all the buffs than the first Prism (presumely, don't know the efficiency actually, as I haven't bought one, but TM is less efficient), so that sounds promising for the power of the buffs.

edit2: The pink multiplier upgrade for bank seems to be missing, or?
« Last Edit: August 27, 2014, 09:52:57 am by DStu »
Logged

sudgy

  • Cartographer
  • *****
  • Offline Offline
  • Posts: 3431
  • Shuffle iT Username: sudgy
  • It's pronounced "SOO-jee"
  • Respect: +2706
    • View Profile
Re: Cookie Clicker?
« Reply #131 on: September 18, 2014, 01:38:36 pm »
+2

This is the best part of the source code:

Code: [Select]
Game.baseSeason='';//halloween, christmas, valentines, fools, easter
//automatic season detection (might not be 100% accurate)
var day=Math.floor((new Date()-new Date(new Date().getFullYear(),0,0))/(1000*60*60*24));
if (day>=41 && day<=46) Game.baseSeason='valentines';
else if (day>=90 && day<=92) Game.baseSeason='fools';
else if (day>=304-7 && day<=304) Game.baseSeason='halloween';
else if (day>=349 && day<=365) Game.baseSeason='christmas';
else
{
//easter is a pain godd***
var easterDay=function(Y){var C = Math.floor(Y/100);var N = Y - 19*Math.floor(Y/19);var K = Math.floor((C - 17)/25);var I = C - Math.floor(C/4) - Math.floor((C - K)/3) + 19*N + 15;I = I - 30*Math.floor((I/30));I = I - Math.floor(I/28)*(1 - Math.floor(I/28)*Math.floor(29/(I + 1))*Math.floor((21 - N)/11));var J = Y + Math.floor(Y/4) + I + 2 - C + Math.floor(C/4);J = J - 7*Math.floor(J/7);var L = I - J;var M = 3 + Math.floor((L + 40)/44);var D = L + 28 - 31*Math.floor(M/4);return new Date(Y,M-1,D);}(new Date().getFullYear());
easterDay=Math.floor((easterDay-new Date(easterDay.getFullYear(),0,0))/(1000*60*60*24));
if (day>=easterDay-7 && day<=easterDay) Game.baseSeason='easter';
}
Logged
If you're wondering what my avatar is, watch this.

Check out my logic puzzle blog!

   Quote from: sudgy on June 31, 2011, 11:47:46 pm

sudgy

  • Cartographer
  • *****
  • Offline Offline
  • Posts: 3431
  • Shuffle iT Username: sudgy
  • It's pronounced "SOO-jee"
  • Respect: +2706
    • View Profile
Re: Cookie Clicker?
« Reply #132 on: February 05, 2016, 11:01:35 pm »
0

So, uh, sorry to maybe ruin your life, but it's been updating...
Logged
If you're wondering what my avatar is, watch this.

Check out my logic puzzle blog!

   Quote from: sudgy on June 31, 2011, 11:47:46 pm

werothegreat

  • Adventurer
  • ******
  • Offline Offline
  • Posts: 8172
  • Shuffle iT Username: werothegreat
  • Let me tell you a secret...
  • Respect: +9625
    • View Profile
Re: Cookie Clicker?
« Reply #133 on: February 06, 2016, 01:06:19 am »
0

So, uh, sorry to maybe ruin your life, but it's been updating...

Uh oh.  Luckily it's only the beta.
Logged
Contrary to popular belief, I do not run the wiki all on my own.  There are plenty of other people who are actively editing.  Go bother them!

Check out this fantasy epic adventure novel I wrote, the Broken Globe!  http://www.amazon.com/Broken-Globe-Tyr-Chronicles-Book-ebook/dp/B00LR1SZAS/

Limetime

  • Saboteur
  • *****
  • Offline Offline
  • Posts: 1237
  • Shuffle iT Username: limetime
  • Respect: +1179
    • View Profile
Re: Cookie Clicker?
« Reply #134 on: February 20, 2016, 05:56:28 pm »
+1

Dominion clicker?
Click those harems
Logged

shraeye

  • Minion
  • *****
  • Offline Offline
  • Posts: 690
  • Shuffle iT Username: shraeye
  • More Graph Theory please
  • Respect: +299
    • View Profile
Re: Cookie Clicker?
« Reply #135 on: April 06, 2016, 04:23:02 pm »
0

yeah, i clicked again
Logged

Davio

  • 2012 Dutch Champion
  • *
  • Offline Offline
  • Posts: 4787
  • Respect: +3412
    • View Profile
Re: Cookie Clicker?
« Reply #136 on: April 07, 2016, 03:35:00 am »
0

This is the best part of the source code:

Code: [Select]
Game.baseSeason='';//halloween, christmas, valentines, fools, easter
//automatic season detection (might not be 100% accurate)
var day=Math.floor((new Date()-new Date(new Date().getFullYear(),0,0))/(1000*60*60*24));
if (day>=41 && day<=46) Game.baseSeason='valentines';
else if (day>=90 && day<=92) Game.baseSeason='fools';
else if (day>=304-7 && day<=304) Game.baseSeason='halloween';
else if (day>=349 && day<=365) Game.baseSeason='christmas';
else
{
//easter is a pain godd***
var easterDay=function(Y){var C = Math.floor(Y/100);var N = Y - 19*Math.floor(Y/19);var K = Math.floor((C - 17)/25);var I = C - Math.floor(C/4) - Math.floor((C - K)/3) + 19*N + 15;I = I - 30*Math.floor((I/30));I = I - Math.floor(I/28)*(1 - Math.floor(I/28)*Math.floor(29/(I + 1))*Math.floor((21 - N)/11));var J = Y + Math.floor(Y/4) + I + 2 - C + Math.floor(C/4);J = J - 7*Math.floor(J/7);var L = I - J;var M = 3 + Math.floor((L + 40)/44);var D = L + 28 - 31*Math.floor(M/4);return new Date(Y,M-1,D);}(new Date().getFullYear());
easterDay=Math.floor((easterDay-new Date(easterDay.getFullYear(),0,0))/(1000*60*60*24));
if (day>=easterDay-7 && day<=easterDay) Game.baseSeason='easter';
}
The date of Easter is easy to calculate, just add 6 weeks to Carnival.
Logged

BSG: Cagprezimal Adama
Mage Knight: Arythea

werothegreat

  • Adventurer
  • ******
  • Offline Offline
  • Posts: 8172
  • Shuffle iT Username: werothegreat
  • Let me tell you a secret...
  • Respect: +9625
    • View Profile
Re: Cookie Clicker?
« Reply #137 on: July 08, 2017, 09:33:49 pm »
0

A new beta has rolled out, adding mini-games for a couple buildings.  I'm trying it now.
Logged
Contrary to popular belief, I do not run the wiki all on my own.  There are plenty of other people who are actively editing.  Go bother them!

Check out this fantasy epic adventure novel I wrote, the Broken Globe!  http://www.amazon.com/Broken-Globe-Tyr-Chronicles-Book-ebook/dp/B00LR1SZAS/

schadd

  • Jester
  • *****
  • Offline Offline
  • Posts: 892
  • Shuffle iT Username: schadd
  • Respect: +1266
    • View Profile
Re: Cookie Clicker?
« Reply #138 on: July 08, 2017, 10:09:48 pm »
0

nah
Logged
I thought you thought it was a slip because I said 'Jake's partners' instead of 'Roadrunner7671.'

sudgy

  • Cartographer
  • *****
  • Offline Offline
  • Posts: 3431
  • Shuffle iT Username: sudgy
  • It's pronounced "SOO-jee"
  • Respect: +2706
    • View Profile
Re: Cookie Clicker?
« Reply #139 on: November 07, 2017, 12:02:31 am »
0

I have all heavenly upgrades and all normal achievements other than sugar lump related ones.
Logged
If you're wondering what my avatar is, watch this.

Check out my logic puzzle blog!

   Quote from: sudgy on June 31, 2011, 11:47:46 pm

GendoIkari

  • Adventurer
  • ******
  • Offline Offline
  • Posts: 9701
  • Respect: +10741
    • View Profile
Re: Cookie Clicker?
« Reply #140 on: November 07, 2017, 09:11:27 am »
0

So yesterday I just finished playing Trimps after 3.5 months. Definitely one of the best idles I've played. I got to a point where I'd seen all new mechanics/content the game had; but didn't grind it out for every achievement or anything; that would have been another several months. It was so addicting though; ate up a lot of my time.
Logged
Check out my F.DS extension for Chrome! Card links; Dominion icons, and maybe more! http://forum.dominionstrategy.com/index.php?topic=13363.0

Thread for Firefox version:
http://forum.dominionstrategy.com/index.php?topic=16305.0

werothegreat

  • Adventurer
  • ******
  • Offline Offline
  • Posts: 8172
  • Shuffle iT Username: werothegreat
  • Let me tell you a secret...
  • Respect: +9625
    • View Profile
Re: Cookie Clicker?
« Reply #141 on: November 08, 2017, 08:59:27 pm »
0

So yesterday I just finished playing Trimps after 3.5 months. Definitely one of the best idles I've played. I got to a point where I'd seen all new mechanics/content the game had; but didn't grind it out for every achievement or anything; that would have been another several months. It was so addicting though; ate up a lot of my time.

You rat bastard.  There goes 2 hours of my life.  :P
Logged
Contrary to popular belief, I do not run the wiki all on my own.  There are plenty of other people who are actively editing.  Go bother them!

Check out this fantasy epic adventure novel I wrote, the Broken Globe!  http://www.amazon.com/Broken-Globe-Tyr-Chronicles-Book-ebook/dp/B00LR1SZAS/

GendoIkari

  • Adventurer
  • ******
  • Offline Offline
  • Posts: 9701
  • Respect: +10741
    • View Profile
Re: Cookie Clicker?
« Reply #142 on: November 09, 2017, 11:37:26 am »
0

So yesterday I just finished playing Trimps after 3.5 months. Definitely one of the best idles I've played. I got to a point where I'd seen all new mechanics/content the game had; but didn't grind it out for every achievement or anything; that would have been another several months. It was so addicting though; ate up a lot of my time.

You rat bastard.  There goes 2 hours of my life.  :P

You managed to quit after only 2 hours??
Logged
Check out my F.DS extension for Chrome! Card links; Dominion icons, and maybe more! http://forum.dominionstrategy.com/index.php?topic=13363.0

Thread for Firefox version:
http://forum.dominionstrategy.com/index.php?topic=16305.0

werothegreat

  • Adventurer
  • ******
  • Offline Offline
  • Posts: 8172
  • Shuffle iT Username: werothegreat
  • Let me tell you a secret...
  • Respect: +9625
    • View Profile
Re: Cookie Clicker?
« Reply #143 on: November 09, 2017, 04:29:37 pm »
+1

So yesterday I just finished playing Trimps after 3.5 months. Definitely one of the best idles I've played. I got to a point where I'd seen all new mechanics/content the game had; but didn't grind it out for every achievement or anything; that would have been another several months. It was so addicting though; ate up a lot of my time.

You rat bastard.  There goes 2 hours of my life.  :P

You managed to quit after only 2 hours??

Nah, still going...
Logged
Contrary to popular belief, I do not run the wiki all on my own.  There are plenty of other people who are actively editing.  Go bother them!

Check out this fantasy epic adventure novel I wrote, the Broken Globe!  http://www.amazon.com/Broken-Globe-Tyr-Chronicles-Book-ebook/dp/B00LR1SZAS/

GendoIkari

  • Adventurer
  • ******
  • Offline Offline
  • Posts: 9701
  • Respect: +10741
    • View Profile
Re: Cookie Clicker?
« Reply #144 on: November 09, 2017, 06:11:47 pm »
0

So yesterday I just finished playing Trimps after 3.5 months. Definitely one of the best idles I've played. I got to a point where I'd seen all new mechanics/content the game had; but didn't grind it out for every achievement or anything; that would have been another several months. It was so addicting though; ate up a lot of my time.

You rat bastard.  There goes 2 hours of my life.  :P

You managed to quit after only 2 hours??

Nah, still going...

If you use Kong chat there; I recommend room #2. It's where I was the whole time; great people.
Logged
Check out my F.DS extension for Chrome! Card links; Dominion icons, and maybe more! http://forum.dominionstrategy.com/index.php?topic=13363.0

Thread for Firefox version:
http://forum.dominionstrategy.com/index.php?topic=16305.0

Cuzz

  • Minion
  • *****
  • Offline Offline
  • Posts: 623
  • Shuffle iT Username: Cuzz
  • Respect: +1018
    • View Profile
Re: Cookie Clicker?
« Reply #145 on: November 10, 2017, 10:20:48 am »
+2

I remember after a week or so when Cookie Clicker first came out I finally had an existential panic about what I was doing with my life and had to do a sudden scorched-earth cache-clear to break the spell.
Logged

pacovf

  • Cartographer
  • *****
  • Offline Offline
  • Posts: 3499
  • Multiediting poster
  • Respect: +3838
    • View Profile
Re: Cookie Clicker?
« Reply #146 on: November 10, 2017, 11:27:07 am »
0

I remember after a week or so when Cookie Clicker first came out I finally had an existential panic about what I was doing with my life and had to do a sudden scorched-earth cache-clear to break the spell.

Same, though it happened with Candy Box for me. I stay clear from those now.
Logged
pacovf has a neopets account.  It has 999 hours logged.  All his neopets are named "Jessica".  I guess that must be his ex.

GendoIkari

  • Adventurer
  • ******
  • Offline Offline
  • Posts: 9701
  • Respect: +10741
    • View Profile
Re: Cookie Clicker?
« Reply #147 on: November 10, 2017, 11:38:57 am »
+1

I remember after a week or so when Cookie Clicker first came out I finally had an existential panic about what I was doing with my life and had to do a sudden scorched-earth cache-clear to break the spell.

Same, though it happened with Candy Box for me. I stay clear from those now.

The thing with Candy Box (and A Dark Room) is that they have the feel of an idle game, but they also actually end! You can beat the game; and within a reasonable amount of time. I wish a lot more idle games were that style. I don't like this idea of just play forever until you get board of it.. I want to beat the game!

With Trimps, I eventually just set a goal for myself and decided that I'd stop when I hit that. It would have been nice to get all achievements, but that would have been a lot longer. Instead, I got to the point where I'd unlocked all new mechanics/content; so there was no longer specific things to look forward to reaching.
Logged
Check out my F.DS extension for Chrome! Card links; Dominion icons, and maybe more! http://forum.dominionstrategy.com/index.php?topic=13363.0

Thread for Firefox version:
http://forum.dominionstrategy.com/index.php?topic=16305.0

pacovf

  • Cartographer
  • *****
  • Offline Offline
  • Posts: 3499
  • Multiediting poster
  • Respect: +3838
    • View Profile
Re: Cookie Clicker?
« Reply #148 on: November 10, 2017, 11:53:39 am »
0

Actually, I misremembered: I finished Candy Box 1 and 2, and they were ok. It's XKCD's sandcastle builder where I stopped myself. Dunno if it ends or not, I just didn't like what it was doing to me.
Logged
pacovf has a neopets account.  It has 999 hours logged.  All his neopets are named "Jessica".  I guess that must be his ex.

sudgy

  • Cartographer
  • *****
  • Offline Offline
  • Posts: 3431
  • Shuffle iT Username: sudgy
  • It's pronounced "SOO-jee"
  • Respect: +2706
    • View Profile
Re: Cookie Clicker?
« Reply #149 on: November 10, 2017, 01:32:47 pm »
0

I don't like this idea of just play forever until you get board of it..

FTFY
Logged
If you're wondering what my avatar is, watch this.

Check out my logic puzzle blog!

   Quote from: sudgy on June 31, 2011, 11:47:46 pm
Pages: 1 ... 4 5 [6] 7 8 9  All
 

Page created in 0.092 seconds with 21 queries.