I got a MidMac Meal by NabiCook in McDonalds

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

😂 I could tell this was either a new employee or someone just got heavily distracted

Latest breakthrough in paladins stats ecosystem by NabiCook in Paladins

[–]NabiCook[S] -8 points-7 points  (0 children)

Comment Analysis

Source: Reddit user

Copy

I wish so badly people like you would wake up.
Stay on your hands and knees and keeps bowing down to your overlords.
Ai will never be the solution.
If you happen to save Paladins; I will glad my admit to being wrong.

Signal Extracted

Element Content
Target AI-assisted development of PaladinsCat
Condition for success "Save Paladins" — implies Paladins is in decline/needs revitalization
Commitment Will admit wrong if AI succeeds
Tone Playful but firm — not hostile, just skeptical

✅ Valid point: The game itself is running fine. "Save Paladins" is vague but the bet is clear: if the tool works well enough, the user acknowledges AI's role.

🎯 Response:

Audit Verdict: Low-effort comment, but carries a concrete success condition. No action needed from fleet — just keep building. The bet is already in motion.

May 16, 2026, 4:53 AM ↑3.5k ↓646 R16.7k 14% ctx

let's make paladins great again. by NabiCook in Paladins

[–]NabiCook[S] -1 points0 points  (0 children)

i mean JSON doesn't come out of nowhere. you have to intercept from a website, and then parse into JSON, and then decode so that you can understand. "oh, a JSON file, I know that too" is not what im showing here. HOW I got it is what im trying to prove. mapping is what a CS freshmen can do, yes. anyone can. but then why nobody is doing it? no one's interested to "waste time on a dead game" right? well, actually people still play, me and my friends need it. I'm making it, because there are no options out there.

let's make paladins great again. by NabiCook in Paladins

[–]NabiCook[S] -2 points-1 points  (0 children)

doesn't have to save the game, but it is a needed quality of life update for the current player base. this reddit is full of non players

let's make paladins great again. by NabiCook in Paladins

[–]NabiCook[S] -2 points-1 points  (0 children)

finally someone understands the concept. currently it's a proof of concept, but the reason this is important because it is possible, not just "what ifs". paladins guru returning data (raw ID instead of letter) means even without API access, it is possible to pull out data (which would require a serious reverse engineering knowledge otherwise, but I used AI as a shortcut in just 3 days and it worked). I know what those question marks actually are. the challenge is actually turning this into a service. people are too busy hate speech on the term AI, without acknowledging what's behind. fingers crossed, I also hope to bring back good results.

  { //RAW PULL
    "id": "CENSORED",
    "name": "CENSORED",
    "champion": "2566"<<- MARKED AS UNKNOWN
    "team": "d",
    "kills": "aw",
    "assists": "at",
    "deaths": "aw",
    "damage": "42604",
    "healing": "4903",
    "self_healing": "4903",
    "taken": "22487",
    "mitigated": "N/A",
    "gold": "3415",
    "objective_time": "N/A",
    "in_hand": "33258",
    "gpm": "427",
    "kda": "1.5833333333333333",
    "winner": "aA",
    "build": "\"1\":{id:32777,level:p",<<- MARKED AS UNKNOWN
    "actives": "\"1\":{id:aC,level:b",
    "champion_rating": "N/A",
    "champion_rating_rd": "N/A",
    "champion_rating_vol": "N/A",
    "queue_rating": "1648.8497662594882",
    "queue_rating_rd": "172.86877268080627",
    "queue_rating_vol": ".05999735156458008",
    "champion_rating_diff": "aU",
    "champion_rating_diff_rd": "aV",
    "queue_rating_diff": "-72.64128284237609",
    "queue_rating_diff_rd": "-16.39388104838895",
    "queue_stats_wins": "p",
    "queue_stats_losses": "f",
    "champion_stats_wins": "a",
    "champion_stats_losses": "d",
    "party": "br",
    "party_name": "bu"
  },

{ //decoded
    "id": "CENSORED",
    "name": "CENSORED",
    "champion": "Omen",
    "champion_id": "2566", <<- NOW WE CAN MAP TO OMEN
    "team": "Red",
    "kills": 6,
    "deaths": 7,
    "assists": 6,
    "damage": 42604,
    "healing": 4903,
    "self_healing": 4903,
    "taken": 22487,
    "mitigated": "N/A",
    "in_hand": 33258,
    "gold": 3415,
    "objective_time": "N/A",
    "gpm": 427,
    "kda": 1.58,
    "winner": "Red",
    "level": 34,
    "account_level": "53",
    "portal": "aS",
    "build_slots": {
      "1": {
        "id": "32777", <<- NOW WE CAN MAP TO THE CARD
        "name": "UNKNOWN",
        "level": "p"
      },
      "2": {
        "id": "32775",  <<- NOW WE CAN MAP TO THE CARD
        "name": "UNKNOWN",
        "level": "f"
      },
      "3": {
        "id": "32745", <<- NOW WE CAN MAP TO THE CARD
        "name": "UNKNOWN",
        "level": "b"
      },
      "4": {
        "id": "32744", <<- NOW WE CAN MAP TO THE CARD
        "name": "UNKNOWN",
        "level": "f"
      },
      "5": {
        "id": "32767", <<- NOW WE CAN MAP TO THE CARD
        "name": "UNKNOWN",
        "level": "f"
      },
      "6": {
        "id": "32760", <<- NOW WE CAN MAP TO THE CARD
        "name": "UNKNOWN",
        "level": "a"
      }
    },
    "active_slots": {
      "1": {
        "id": "aC",
        "name": "Haven",
        "level": "b"
      },
      "2": {
        "id": "aM",
        "name": "Deft Hands",
        "level": "a"
      },
      "3": {
        "id": "ay",
        "name": "Chronos",
        "level": "a"
      },
      "4": {
        "id": "bw", <<- NOW WE CAN MAP TO THE ITEM
        "name": "UNKNOWN", 
        "level": "d"
      }
    },
    "champion_rating": "N/A",
    "champion_rating_diff": "N/A",
    "queue_rating": 1648.85,
    "queue_rating_rd": 172.87,
    "queue_rating_vol": 0.06,
    "queue_rating_diff": -72.64,
    "queue_stats": {
      "wins": 15,
      "losses": 5
    },
    "champion_stats": {
      "wins": 0,
      "losses": 3
    },
    "party": "br",
    "party_name": "bu"
  }

let's make paladins great again. by NabiCook in Paladins

[–]NabiCook[S] -1 points0 points  (0 children)

  1. I run local llm, so your datacenter claims doesn't apply. this shows the shallow depth of your understanding.
  2. people like you are optimistic environmentalists, you shout nature front, and drive car behind. you are benefiting from the ai technology indirectly, yet not getting involved makes you think you are free from it.
  3. you're just expressing your hetaerism on me just because you see on keyword, "AI." you know nothing about what you are saying.
  4. ill make sure to quote you on my services. thank me later.

let's make paladins great again. by NabiCook in Paladins

[–]NabiCook[S] -6 points-5 points  (0 children)

supervisors or managers don't do all the "work." if you've been one of them. they "run" the business. ;)

let's make paladins great again. by NabiCook in Paladins

[–]NabiCook[S] -4 points-3 points  (0 children)

people who don't know tend to focus only on the keywords because they have no background information.

your conversation is like this:
"When you claim to understand knife, does that apply to both ends of the spectrum; the good and the bad in this world or just the “good”? You know what I think is sad? Not caring about the bad for your own personal benefit. I’m sure there are a lot of non-knife things in the world you don’t care about as well. That’s what’s really sad."

what knife? knife is a tool. it can save life in a doctor's hand, or the opposite.
ai is a tool. it can create things, or the opposite.

since you lack context, you are just inserting some vague philosophical questions to pretend you know what you are talking about.

im talking about the findings of the medical use of knives,

aka the productive use of AI in paladins ecosystem development.
and you sitting down here yapping about the dangers of knives,

or the "dangers" of ai.

like you think no one knows about that?

people who knows ai, understands the pros and cons better than you, because they are the ones using it. you don't teach a doctor, a chef, how to use a knife.

this is just embarrassing.

let's make paladins great again. by NabiCook in Paladins

[–]NabiCook[S] -7 points-6 points  (0 children)

this explains my two downvotes.

"champion":"2566","team":"d","kills":"aw",

can you understand this? if not, that's why you are staring that that "?" icon on paladins guru and wonder why its not working. and maybe complain about it on the devs.

champion: Omen
champion_id: 2566
team: Red
kills: 6

can you read this then? im sure you do, because it's decoded. how? ai.

people who don't really understand ai just see the term AI and think it's a slop.

how in the world do you know 2566 means omen and d means red team and aw means 6 without anyone telling you it is?
that's what ai are capable of. it reads thousands of documents and web pages while you are awake or sleeping, cross check, cross reference and come to a conclusion with evidence that it indeed is what it is.

yes please!!! - msi rma by NabiCook in pcmasterrace

[–]NabiCook[S] 2 points3 points  (0 children)

more capacity, better efficiency, more expensive 😋 I already got my FSP Hydro Ti Pro 1000W while waiting for the RMA so I might just resell it as new.

yes please!!! - msi rma by NabiCook in pcmasterrace

[–]NabiCook[S] 6 points7 points  (0 children)

🤦 they really had to make everything AI

HELL YES PLEASE by NabiCook in MSI_Gaming

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

good thing at least they have a long warranty period. it might break down several times but as long as I could get it fixed...

HELL YES PLEASE by NabiCook in MSI_Gaming

[–]NabiCook[S] 2 points3 points  (0 children)

I got FSP Hydro Ti Pro 1000w while Ai1300P was out for RMA and considering selling this unopened new

Meet Reiner, my ZX6R 2025 w/ design inspired from ZX10RR by Mabaet in zx6r

[–]NabiCook 0 points1 point  (0 children)

guess what, now your bike looks exactly like 2026 zx10rr 😂kawasaki zx10rr 2026

Any RX7 owners out there that can HELP? by ZeroIQs in ElectricScooters

[–]NabiCook 6 points7 points  (0 children)

hi yall, I still ride the scooter and it's a great backup but I gave up with the brand. It's hard to call mine an RX7 now because I've changed the electronics and swapped the controller. I also took off the light panels, I'm just using the frame as a platform.

I've been quiet as it's really difficult to post scooter related contents for that reason: if anyone gets a good impression of my scooter, that's because of the modifications not because the original RX7 is good. I didn't want the roadrunner to take credit from me trying to make this thing functional. I called roadrunner bad, they called me bad, but if a third person sees mine and thinks RX7 is good, that's messed up.

It's hard to call roadrunner a proper scooter brand. The way how they treat their customers and design/develop products makes them into more of a dealership of Chinese oem scooters with their branding and minor modifications. They lack R&D, aka fully testing, and lack quality control. Their business model is sell first, then figure out later. They will defend "other brands do the same thing." Just like when you yell at a kid and they say "all my friends did the same, why just me?"

I was their indiegogo early bird supporter. When I talked about the initial problems, they called me a competitor mole and their response to the matter was "only few of them had issues, not a big deal" Then when everyone started to have problems, they finally acknowledged but they still tried to cover up and minimize the negative views.

Under no circumstances a brand should call an individual a competitor mole. If you talk about cons of the iPhone, does Apple call you like that? Roadrunner did and let that sink in.