this post was submitted on 02 Apr 2025
96 points (99.0% liked)

chapotraphouse

13758 readers
779 users here now

Banned? DM Wmill to appeal.

No anti-nautilism posts. See: Eco-fascism Primer

Slop posts go in c/slop. Don't post low-hanging fruit here.

founded 4 years ago
MODERATORS
 

He was a bronze Torb main

top 32 comments
sorted by: hot top controversial new old
[–] RNAi@hexbear.net 40 points 2 days ago* (last edited 2 days ago) (2 children)

Why would you want to be in a league above your skill, it would make the game even less enjoyable.

[–] fox@hexbear.net 26 points 2 days ago (1 children)

He's emotionally stunted and unable to validate himself, leading him to seek external validation at every turn. Sometimes that's being the World's Most Divorced Dad on Twitter sharing stale memes. Sometimes it's trying to brag about being the Best Gamer, no matter what that looks like, be it ranking in Overwatch or paying someone to lead in Path of Exile for him. Ironically he has been completely poisoned by and subsumed into the cultures of nonstop competition for meaningless points that gaming corporations create and maintain to keep players playing. When he gets exposed it just makes him look like an even bigger loser, like his holistically awful Elden Ring build. If a normal person shared their terrible ER build they'd get pointers on how to improve it, but the Technoking of SpaceX is such an egotist that it just adds fuel to the fire.

[–] RNAi@hexbear.net 1 points 1 day ago

Is there a reset potion?

[–] Belly_Beanis@hexbear.net 12 points 1 day ago (2 children)

It's entitlement. People who think "I'm good enough to be in the highest ranks, it's my stupid teammates that stop me from being there!" and so they get boosted. They don't realize having shitty teammates is part of any game and knowing how to deal with those players is a skill itself.

But since they're antisocial nerds who treat other people like shit in real life and online, they never learn. There's an overlap between misogynistic assholes and shitters who get boosted.

[–] Carl@hexbear.net 7 points 1 day ago

They don't realize having shitty teammates is part of any game and knowing how to deal with those players is a skill itself.

and nine times out of ten the person in question isn't at the point where they can start thinking about how to deal with bad players on their team, because they are deeply ignorant of fundamental concepts like map awareness and are a really sloppy player.

idk about Overwatch but in League (at least back when I played) you could get to diamond just by muting your teammates and playing one champion every game and getting good enough to where you didn't pick bad fights or lose your lane for no reason.

[–] RNAi@hexbear.net 3 points 1 day ago* (last edited 1 day ago)

There's an overlap between misogynistic assholes and shitters who get boosted.

There's a scientific study about this actually, the bad players tended to be way more misogynistic because of their insecurities

[–] Tabitha@hexbear.net 19 points 2 days ago

This is like so dumb, like the point of having kids is apparently to use them to fraudulently present yourself as being a pro gamer then abandon them? This is some of the most idiotic anti-family-values shit but nobody cares.

[–] DragonBallZinn@hexbear.net 24 points 2 days ago (3 children)

I’ve played Overwatch competitively before. You have to intentionally be bad at the game to get that rank. I’m guessing Elon’s the type of guy that treats overwatch like a ffa deathmatch and doesn’t use the mic.

[–] Lochat@hexbear.net 20 points 2 days ago (1 children)

Refusing to talk to the type of people who play Overwatch would be the most intelligent thing he's publicly done.

[–] WIIHAPPYFEW@hexbear.net 6 points 1 day ago

Refusing to ~~talk to the type of people who~~ play Overwatch would be the most intelligent thing he's publicly done.

[–] Awoo@hexbear.net 12 points 2 days ago

nd doesn’t use the mic.

Using mic is actively detrimental in Overwatch until at least Diamond these days. 99% of people genuinely get better results by turning it all off

[–] redsand@lemmy.dbzer0.com 2 points 1 day ago* (last edited 1 day ago)

I can't seem to get the page to load. What rank was he? Silver boosted gold? Edit: Holy crap I found it. He was a bronze torb main. I'm dying 😂

[–] peppersky@hexbear.net 13 points 1 day ago (2 children)

Please add a word filter so I can filter out these stupid nonsense posts about Musk please I don't give a shit about him personally and you really shouldn't care either

[–] IEatDaGoat@lemm.ee 1 points 1 day ago

How about filtering "Musk"?

[–] BountifulEggnog@hexbear.net 4 points 1 day ago (1 children)

With a bit of fiddling deepseek gave me this tamper monkey script, appears to work on my end:

spoiler

// ==UserScript==
// @name         Lemmy Post Filter
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Remove Lemmy posts containing specific keywords in their titles
// @author       Deepseek
// @match        https://hexbear.net/*
// @match        https://*.hexbear.net/*
// @match        https://lemmygrad.ml/*
// @match        https://*.lemmygrad.ml/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Add your keywords here (case insensitive)
    const KEYWORDS = [
        'elon',
        'musk'
        // Add more keywords as needed
    ];

    // Function to check if title contains any of the keywords
    function containsKeyword(title) {
        if (!title) return false;
        const lowerTitle = title.toLowerCase();
        return KEYWORDS.some(keyword => lowerTitle.includes(keyword.toLowerCase()));
    }

    // Function to process posts
    function filterPosts() {
        const posts = document.querySelectorAll('.post-listing.mt-2');

        posts.forEach(post => {
            const titleElement = post.querySelector('.d-inline-block');
            if (titleElement) {
                const titleText = titleElement.textContent || titleElement.innerText;
                if (containsKeyword(titleText)) {
                    // Remove the post
                    post.style.display = 'none';


                    // Find and remove the HR after this post
                    const nextElement = post.nextElementSibling;
                    if (nextElement && nextElement.tagName === 'HR') {
                        nextElement.style.display = 'none';
                    }

                    console.log('Removed post with title:', titleText);
                }
            }
        });
    }

    // Run initially
    filterPosts();

    // Observe DOM changes for infinite scroll or dynamic content loading
    const observer = new MutationObserver(function(mutations) {
        filterPosts();
    });

    observer.observe(document.body, {
        childList: true,
        subtree: true
    });
})();
[–] peppersky@hexbear.net 2 points 1 day ago (1 children)

Damn if that works that'd be real useful, thanks a lot, I'm too stupid to do things like that even with AI

[–] BountifulEggnog@hexbear.net 6 points 1 day ago (1 children)

You aren't stupid for not knowing how to do something penguin-love Hope it works for you, I can try to help you install it if you need.

[–] peppersky@hexbear.net 4 points 1 day ago

cri

Is that that revolutionary kindness I heard so much about...

Thank you so much, installing Userscripts does fall within my skill range tho. Thank you anyway for the offer

[–] shath@hexbear.net 17 points 2 days ago (3 children)

Cause Elon is an ebic engineer just like Torb, of course.

[–] DragonBallZinn@hexbear.net 13 points 2 days ago (1 children)

I’m surprised he didn’t main bastion.

[–] GenderIsOpSec@hexbear.net 7 points 2 days ago

and this was when the game was just out so Bastion was godtier....so was Torb tbh.

[–] redsand@lemmy.dbzer0.com 2 points 1 day ago

And he was hard stuck bronze. I'm dying 😂 😂😂

[–] came_apart_at_Kmart@hexbear.net 10 points 1 day ago (1 children)

I never played this game and tried to decipher what this means by searching the terms, but all it did was reignite my dispassion for learning this game because it subjected me to reading the random opinions of the vocal fandom.

can someone who knows articulate why being "bronze torb main" is apparently the 3 word combination that means "objective loser"?

[–] CrawlMarks@hexbear.net 13 points 1 day ago (1 children)

Bronze is the lowest level of combatant. Torb is a guy that built turrets so you didn't actually have to aim yourself. So he is playing the least skill based position and at a low level.

If you had really good tactical awareness it could be a valuable character to have on a team. I was a gold level torb at one point. But it was about map awareness and positioning and not mechanical skill.

thanks for the context!

[–] Feinsteins_Ghost@hexbear.net 17 points 2 days ago
[–] kleeon@hexbear.net 10 points 2 days ago
[–] SpiderFarmer@hexbear.net 6 points 1 day ago

melon-musk yamagami speech-side-l-1 Bronze Torb!

[–] GiveOver@feddit.uk 3 points 2 days ago (1 children)

I hate Musk but maybe he just wanted to play games with his kids? If you really want boosting out of bronze you don't ask the silver 12 year old.

Ofc he was a Torb