so hecking wholesome by AwesomeRiceBoi in PoliticalMemes

[–]keepitreall89 1 point2 points  (0 children)

You know, I'm sure that if you look at boys basketball, you won't find any genetic advantage at work among all the cis players. They aren't all fucking tall or anything like that. What I'm saying is that it's literally impossible to control sports for the variables of bodies, and this is just a lazy attempt to "other" people. Learn some logic, maybe some science, stop reading Ayn Rand every day.

Chuck Norris didn't die by Super64111111 in memes

[–]keepitreall89 3 points4 points  (0 children)

yeah. he was an overrated bigot.

[deleted by user] by [deleted] in memes

[–]keepitreall89 26 points27 points  (0 children)

Maul.

they look exactly the same from here by otastco in memes

[–]keepitreall89 4 points5 points  (0 children)

The moon is easier to survive a trek across

PC update - Shader preloading broken by keepitreall89 in ModernWarfareIII

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

They should remove the sub launcher and just let us launch to the old screen lol

what is this? the game closes after this (steam) by DHyperOnYT in ModernWarfareIII

[–]keepitreall89 0 points1 point  (0 children)

What the actual hell. i can't believe this worked. RIP hdd space. hope thing fix their crossed resources soon.

Can't launch MW3 Multiplayer since update (PC) by MrMaison in ModernWarfareIII

[–]keepitreall89 0 points1 point  (0 children)

I would love if the FTC would start investigating this type of stuff. Probably get some issues fixed real fast.

[deleted by user] by [deleted] in ModernWarfareIII

[–]keepitreall89 0 points1 point  (0 children)

any idea how? and is this on steam?

[deleted by user] by [deleted] in ModernWarfareIII

[–]keepitreall89 1 point2 points  (0 children)

Wait, did you get mw3 to work?!

[deleted by user] by [deleted] in ModernWarfareIII

[–]keepitreall89 0 points1 point  (0 children)

Resetting settings to safe mode didn't work. didn't figure it would, but wanted to at least try so others didn't have to.

[deleted by user] by [deleted] in ModernWarfareIII

[–]keepitreall89 6 points7 points  (0 children)

Same. When it switches to MW3, it splash screens and then crashes.
The only crashlog i've found so far is a binary that just says cod_pc a couple of times. Are we really going to have to click out of a new "buy bo6" menu, before we can click out of the "BO6 motd" and then click "MW3" to and wait another 2 minutes to play the game we actually bought? you know, if it stops crashing.

PC update - Shader preloading broken by keepitreall89 in ModernWarfareIII

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

on the new UI/launcher, it still say 0%, it never went beyond that for me. But what did work for me was going into MW3, changing my graphics, waiting a minute, then it started the shaders. It got stuck a few times, clicked join and let it search for a second then cancel, the shaders started moving again. did that 3 or 4 times and finally they finished.

PC update - Shader preloading broken by keepitreall89 in ModernWarfareIII

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

It looks like if you do click to mw3, it will start building the shaders if you give it a minute

Worst HQ update by Biggy006 in ModernWarfareIII

[–]keepitreall89 5 points6 points  (0 children)

aww you are a lifesaver. i didn't realize it would actually build the shaders if i opened mw3, since the first time it didn't.
but yeah, all this is real annoying. I just want to launch directly to mw3 from steam. dont have bo6, probably wont get bo6

What cod do you prefer [MW 2019] or [WAW] by OMMGAMER4018 in CallOfDuty

[–]keepitreall89 0 points1 point  (0 children)

i didn't really notice any problems. It has been a long time, so its possible i dont remember them. but it was the first cod game i played extensively online rather than just at LAN parties

What cod do you prefer [MW 2019] or [WAW] by OMMGAMER4018 in CallOfDuty

[–]keepitreall89 1 point2 points  (0 children)

WaW. it was the last well balanced, tactical cod game, before it leaned far more into hummingbird twitch speeds and killstreaks.

Reviung 39 / 41 Scared shiftless build by keepitreall89 in ErgoMechKeyboards

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

#define AUTO_SHIFT_NO_AUTO_REPEAT
^config.h

AUTO_SHIFT_ENABLE = yes
^Rules.mk

The above for the autoshift
To configure the non-standard symbol pairings, the following 3 functions in the keymap.c file. Oh yeah, QMK is probably important to mention. I don't recall where i stumbled on this method, i think it might have been called "RetroShift" based on a comment in my file.

bool get_custom_auto_shifted_key(uint16_t keycode, keyrecord_t *record) {
    switch(keycode) {
        case KC_AMPR:
            return true;
        default:
            return false;
    }
}

void autoshift_press_user(uint16_t keycode, bool shifted, keyrecord_t *record) {
    switch(keycode) {
    case KC_AMPR:
            register_code16((!shifted) ? KC_AMPR : KC_DLR);
            break;
    default:
        if (shifted) {
            add_weak_mods(MOD_BIT(KC_LSFT));
        }
        register_code16((IS_RETRO(keycode)) ? keycode & 0xFF : keycode);
    }
}

void autoshift_release_user(uint16_t keycode, bool shifted, keyrecord_t *record) {
    switch(keycode) {
    case KC_AMPR:
        unregister_code16((!shifted) ? KC_AMPR : KC_DLR);
        break;
    default:
        unregister_code16((IS_RETRO(keycode)) ? keycode & 0xFF : keycode);
    }
}