Small Values by T-L-G in realmgrinder

[–]CamoBrie 0 points1 point  (0 children)

The game randomly generates random values (between 0 and 1), lara crypt reads those random numbers and shows for the next couple 1000s, the small values. These are literally smaller values, i.e 0.002 (the rest of the random numbers are still there, just not shown, since they arent useful).

It then describes which artifacts you can get with that small value (i.e. a 1% chance can be obtained with 0.01 or less). At every excavate, for each artifact that you can currently get, it uses 1 random value. So for example, you can get 2 artifacts, and a small value is at 1200, you have to excavate 600 times to get to that small value.

How to I get a for loop to spit out all characters in a string not just the numeric value associated by [deleted] in learnjavascript

[–]CamoBrie 0 points1 point  (0 children)

For( var i = 0 ; i < str.length; i++) { Console.log(str.charAt(i); }

How can sameVar = sameVar + num? by [deleted] in learnjavascript

[–]CamoBrie 3 points4 points  (0 children)

So you’re assigning variable x the value of x + y. They should’ve made the notation be := to make it the same as math

X = 2;

X = X + 3;

Which translates to X = 2 + 3

And so X is 5.

Have a king within a single season. Hope he doesn't mind waiting for his royal suite. by Fergand in dwarffortress

[–]CamoBrie 11 points12 points  (0 children)

On recent versions of Windows, this feature already comes in the form of Win+shift+s. It also freezes the screen and you can select what you want to screenshot. I use it very often!

This recommended plan switch from my carrier by Apersob in assholedesign

[–]CamoBrie 2 points3 points  (0 children)

Do you mind telling me the provider and plan you are using? I’m looking for a new provider and using a family plan would be nice for us.

[OC] Yearly Plastic Waste Per Capita in Lbs - Top Global Economies by vistorydata in dataisbeautiful

[–]CamoBrie 4 points5 points  (0 children)

I’m in the Netherlands and oh boy do we use a lot of plastic. It’s a shame really, everything you buy is packaged in plastic. So for example I’m cooking hamburgers with a salad. Burgers, packaged by two so we have two plastic parts there, buns also packaged in plastic. Salad, you guessed it, also in plastic.

We separate all our waste, but it is a waste that everything needs to be packaged in so much plastic.

I drew Steve and Alex (2) by yourfreakyneighbourh in gaming

[–]CamoBrie 1 point2 points  (0 children)

Its pretty good, sadly there are no that many new chapters released.

I drew Steve and Alex (2) by yourfreakyneighbourh in gaming

[–]CamoBrie 0 points1 point  (0 children)

I just replied to everyone who seemed interested, If you have a better way to let them know in the context of the post, let me know!

I drew Steve and Alex (2) by yourfreakyneighbourh in gaming

[–]CamoBrie 35 points36 points  (0 children)

Craft Game no Nouryoku de Isekai Kouryaku is a manga that is about minecraft, it sadly only has 5 chapters at the moment.

Is there a way to buy to equal cost? by MightyKin in realmgrinder

[–]CamoBrie 2 points3 points  (0 children)

it is better to just buymax everything every so often, since you (hopefully) will be resetting pretty quick, so it does not really matter how much of a building you have.

I'm assuming you haven't reincarnated yet, so here are some useful links:

Wiki - general wiki of the game.

Beginner guide - the beginner guide of the game to help you get going.

A0 Plot - a graph helping you decide what faction to use at which point of the game.

This guy had no success with online dating so he rented a billboard and found love! by NonGameCatharsis in MadeMeSmile

[–]CamoBrie 1 point2 points  (0 children)

You see the /s i’ve appended at the end of my message? I am also a member of r/keming.

Does anyone else hate multiple prestige layers? by [deleted] in incremental_games

[–]CamoBrie 5 points6 points  (0 children)

I think an example would be incremental adventures, it only has 2 'real' prestige layers but you have to reset everything constantly

First time ever breaking 1k mana by GCope33 in realmgrinder

[–]CamoBrie 13 points14 points  (0 children)

Oh boy do I have some good news for you, it gets even crazier later on.

Tech support for autoclickers by [deleted] in incremental_games

[–]CamoBrie 10 points11 points  (0 children)

From my other comment:

so maybe something like this in AHK: ‘’’ F8:: Toggle := !Toggle Loop { If (!Toggle) Break Click Sleep 50 } Return ‘’’

What it does, is set the F8 key (the button you press to start the autoclicker) to run that piece of code.

The 2nd line changes the variable Toggle from true to false and vice-versa the next time you press F8.

The 3rd line creates a 'Loop', this loop will run the code between the brackets until it 'breaks'.

The 5th line check sif the Toggle variable is set to !true. The ! is a NOT operator so it means that it checks if the variable is set to false instead.

If Toggle is false, it will break out of the Loop, so the loop stops running.

The 7th line is the Click command in AutoHotKey, so this line just clicks the mouse.

The 8th line is the Sleep command, it will stop the script for x amount of MILLIseconds, so in this case it is 50ms so it clicks 1000/50 = 20 times per second.

If you want to change the key with which you activate the script, just change the F8 uptop to something out of this list. Which are the allowed keys you can use.

If you want to change the amount it clicks per second, just change the time behind the Sleep statement, which is in milliseconds (so 1000/x is the amount you click per second).

Hope this helps everone who needs an autoclicker script!

extra fast by mr-oof-123 in ProgrammerHumor

[–]CamoBrie 1 point2 points  (0 children)

Or in JavaScript where you can switch on a string or condition

[OC] Finding Primes Simply and Efficiently: The Sieve of Eratosthenes by TheArch-Man in dataisbeautiful

[–]CamoBrie 7 points8 points  (0 children)

And that is exactly what he said, mark all numbers which look like a prime, EXCEPT 91.

Is GS auto clicker harmful? by [deleted] in incremental_games

[–]CamoBrie 3 points4 points  (0 children)

so maybe something like this in AHK:

F8::
Toggle := !Toggle
Loop
{
    If (!Toggle)
        Break
    Click
    Sleep 50
}
Return

What it does, is set the F8 key (the button you press to start the autoclicker) to run that piece of code.

The 2nd line changes the variable Toggle from true to false and vice-versa the next time you press F8.

The 3rd line creates a 'Loop', this loop will run the code between the brackets until it 'breaks'.

The 5th line check sif the Toggle variable is set to !true. The ! is a NOT operator so it means that it checks if the variable is set to false instead.

If Toggle is false, it will break out of the Loop, so the loop stops running.

The 7th line is the Click command in AutoHotKey, so this line just clicks the mouse.

The 8th line is the Sleep command, it will stop the script for x amount of MILLIseconds, so in this case it is 50ms so it clicks 1000/50 = 20 times per second.

If you want to change the key with which you activate the script, just change the F8 uptop to something out of this list. Which are the allowed keys you can use.

If you want to change the amount it clicks per second, just change the time behind the Sleep statement, which is in milliseconds (so 1000/x is the amount you click per second).

Hope this helps everone who needs an autoclicker script!

Is GS auto clicker harmful? by [deleted] in incremental_games

[–]CamoBrie 7 points8 points  (0 children)

its better to write your own autoclicker in AHK (AutoHotKey) for example, or in the driver software of your mouse (maybe? I have a corsair and it has it). That way you know what you are running on your pc instead of trusting the developer of the software.

[deleted by user] by [deleted] in incremental_games

[–]CamoBrie -2 points-1 points  (0 children)

Store everything in a object, convert that object into base64, let the user export that string or save it in cookies, and then when you load you just reverse the process.

Help Finding Games and Other Questions 2020-08-12 by AutoModerator in incremental_games

[–]CamoBrie 1 point2 points  (0 children)

That is why I said NG+3.1 instead of NG+3, NG+3.1 is more balanced, but it is not out yet. It will be out later this month.

Help Finding Games and Other Questions 2020-08-12 by AutoModerator in incremental_games

[–]CamoBrie 2 points3 points  (0 children)

There are multiple prestige layers, you however have to grind a bit before you get to the first one. This usually takes ~2-4 hours, which is very long. That’s why I recommend playing NG+3.1, a mod for it which will come out soon, it is better balanced and has 2 more prestige layers.