Cookie Clicker But Budget Deluxe Devlog thing

So I’m making a new Cookie clicker but budget game and stuff and I might need more cookies so what cookie should I add and which cookies should be thrown in the trash can you can also submit like any idea too.

5 Likes

you should probably throw away the expired ones, those taste horrible and they give you nausea

:grinning:

1 Like

Yes But what kind of cookies chococolate chip, white chocolate and etc.

4 Likes

and the ones in the box from a store I won’t name that rymes with Brawlmart, pretty sure those are literally just powder condenced into a solid, or at least thats what they taste like to me

3 Likes

Agreed

7 Likes

Oh and everybody that’s reading this have a cookie =)


(yes I made this and I know it’s bad)

11 Likes

How about a grilled cheese cookie?
(Wait what will that even look like?)

3 Likes


10 likes and ill make it in real life and eat it (it looks really tasty)

15 Likes

Add like shadows to the chips.

3 Likes

I think it looks good! U did better at the art than i could!!!

2 Likes

Oh you know, the classic… oatmeal-raisin-cranberry-blueberry-dusty-pineapple-overcooked-darkchocolate-sardine cookies anyone? :yum:

3 Likes

Thanks

5 Likes

Ah yes, chocolate chip, my favorite
I also tried making a batch of cookies if anyone wants a gluten-free option (but I think it looks more like a pizza)

3 Likes

I call those ‘plastic cookies’ because they’ve never touched a living being before you eat them and they’re my favorite food ever i’m not joking

4 Likes

Yummy

9 Likes

Ye can we get a prove your not a robot test here
jk I actually kinda like those too

4 Likes

Alr i have kinda given up on the new game bacause a nan error thingy if somebody wants to help you say and i will send a link
Oh and this is the same error i talked about on one of the livestreams.

I know this post is dead i think anyways

2 Likes

Please take a picture of it before you eat it so that we can see! (I’m the 10th like!)

1 Like

I will 100% help! Please send the link!

The topic is only dead because you haven’t sent anything for a while. If you keep us updated we will stay interested in the project!

Ok so I figured out your issue! It’s right here where you are setting “KidAmount” to be the setting “KidAmount”.


This is a problem because the setting “KidAmount” doesn’t exist yet, so it returns “Undefined” which is, of course, Not a Number (NaN)! Then later on when you try to use this NaN value in your math, it turns everything else into NaN because obviously any number + NaN is going to also be NaN!

Also note that the same error will happen with “CritChance” if this isn’t fixed! I would recommend some code like this:

By coding it this way, the setting gets created no matter what so you don’t have to keep checking to make sure it exists later in your code!

2 Likes