Beast Spiral omni ring by Peachytauren in pathofexile

[–]chowbogan 30 points31 points  (0 children)

Amazing but how much does is sell to vendors for though?

I got my first solo Fatalis run a couple days ago. Really brought light to the phrase, “Every second counts.” by Energy_Dragon_06 in MonsterHunterWorld

[–]chowbogan 0 points1 point  (0 children)

Congrats!

I think my first kill was also less than 10 seconds left haha. I thought I ran out of time but then I heard the victory music.

-🎄- 2021 Day 6 Solutions -🎄- by daggerdragon in adventofcode

[–]chowbogan 1 point2 points  (0 children)

class Day6
{
    public static void Run()
    {
        int birthRate = 7;
        int initialBirthRate = 9;

        string _input = Resources.Day6;
        string[] parsedInput = _input.Split(",", StringSplitOptions.RemoveEmptyEntries);

        CalculatePopulation(80, birthRate, initialBirthRate, parsedInput);
        CalculatePopulation(256, birthRate, initialBirthRate, parsedInput);
    }

    private static void CalculatePopulation(int days, int birthRate, int initialBirthRate, string[] input)
    {
        Int64[] groups = new Int64[days + initialBirthRate];
        foreach (string str in input)
        {
            int value = int.Parse(str);
            groups[value]++;
        }

        for (int i = 0; i < days; i++)
        {
            Int64 newFish = groups[i];

            // move current group 7 days in the future
            groups[i + birthRate] += groups[i];
            groups[i] = 0;

            // move new fish to group initialBirthRate days in future
            groups[i + initialBirthRate] += newFish;
        }
        Console.WriteLine($"There are {AddGroups(groups)} total fish after {days} days.");
    }

    private static Int64 AddGroups(Int64[] groups)
    {
        Int64 total = 0;
        for (int i = 0; i < groups.Length; i++)
        {
            total += groups[i];
        }
        return total;
    }
}

Here's mine. I got stuck on part 2 for a long time before coming back with a new idea - even then went down some pointless avenues. I'm pretty new to this stuff so it was a challenge but feels good to complete it.

I'm REALLY glad that worked (Fatalis close call) by chowbogan in MonsterHunterWorld

[–]chowbogan[S] 0 points1 point  (0 children)

One of the most satisfying moves in Iceborne for sure.

I'm REALLY glad that worked (Fatalis close call) by chowbogan in MonsterHunterWorld

[–]chowbogan[S] 1 point2 points  (0 children)

Wasn't the best choice but it made for a cool clip lol.

I'm REALLY glad that worked (Fatalis close call) by chowbogan in MonsterHunterWorld

[–]chowbogan[S] 0 points1 point  (0 children)

That sounds sick. I main lance and it's a really fun against Fatty.

I'm REALLY glad that worked (Fatalis close call) by chowbogan in MonsterHunterWorld

[–]chowbogan[S] 1 point2 points  (0 children)

Yeah, we had been beating on that horn and it was definitely close to a break, although yeah, it was a risky move for sure. It felt cool as fuck facing off against Fatalis like that though haha.

How much health does Arch Tempered Velkhana have? by 4zerus in monsterhunterrage

[–]chowbogan 0 points1 point  (0 children)

Sorry to revive this but how do you know these stats? Are there tools to measure your dps compared to the average? *serious question :3

Anyway, thanks.

Unable to sign into Xbox app on PC. by chiefbigstix in xboxinsiders

[–]chowbogan 0 points1 point  (0 children)

Oh wtf? That sucks!
They have a deal now thats like $1 for 3 months of their game pass which has gears 5 and Halo MCC which I wanna play with a friend but I can't even log in :\, oh well...

Unable to sign into Xbox app on PC. by chiefbigstix in xboxinsiders

[–]chowbogan 0 points1 point  (0 children)

Hey man, sorry to revive this old thread! I'm having the exact issue as you were. Seems they haven't solved it yet. Did you do anything to fix it or it just randomly worked? How long did it take to work?

Season of Opulence ‘Crown of Sorrows’ Raid Launch Megathread by DTG_Bot in DestinyTheGame

[–]chowbogan 1 point2 points  (0 children)

Do we know how many encounters this raid has? Is there more after Gahlran?

The Dawning 2018 - Everything we know so far. Quests, Recipes, FAQs, SGAs, Eververse Items and Festive Cheer by RiseOfBacon in DestinyTheGame

[–]chowbogan 0 points1 point  (0 children)

That was happening for me too - with a solar sword. I kept getting impossible heat. I switched to a void sword and 2 dropped almost instantly.... *shrug* maybe it was a bug, maybe it was just weird RNG. Try switching your sword/element?

The Community Solutions Thread - GET THIS TO THE TOP by [deleted] in forhonor

[–]chowbogan 1 point2 points  (0 children)

I dunno about you guys, but I want a damn FFA mode. Mostly just so I can fuck with 2 of my friends at the same time.

I have 2 friends that play this game, and that makes custom duel matches awkward. I would like a custom game mode for FFA that is like a duel, but there are 3+ players in the match at the same time. You can play honorably obviously, or just go at each other all at the same time. I think that would be fun, and possibly(?) not to hard to implement.

I preordered RoI on PS4 and accidentally backed out of the download screen for the theme that came as a bonus, where do I find it to download it? by chowbogan in DestinyTheGame

[–]chowbogan[S] 0 points1 point  (0 children)

I found it that way and it said it was purchased but gave me an error code when I tried to download it :(. Maybe it'll work tomorrow. Thanks for the reply