yukky
Flag: Pakistan
Registered: May 8, 2023
Last post: July 2, 2025 at 5:52 PM
Posts: 9093
1 •• 44 45 46 47 48 49 50 •• 174

i like yukky

posted 9 months ago

EG players have a smooth sailing to winning

posted 9 months ago

ur so smart

posted 9 months ago

its javascript...

posted 9 months ago

no worries cloudberry!

i always knew it was a dream of yours

posted 9 months ago

haha thanks!

your friend is the real goat for making the site

posted 9 months ago

fucking love pistachios but they have such a big calorie creep

posted 9 months ago

No idea what this means!!!!

posted 9 months ago

That is why I made this thread. It lets you fix the ratings!!!!

posted 9 months ago

thats a little bit more complicated

posted 9 months ago

If you're not satisfied with some of the player values in ValSim, good news: since everything is stored locally, you can easily edit them yourself!!!!!!!!!!

For anyone interested in tweaking players or teams, check out this tutorial: ValSim Editing Tutorial.

This also opens the door to creating some fun custom gamemodes. For example, here's a script for a gamemode I call "Everyone is Good and Cheap"—it sets every player to have 80-90 ratings, a $0 salary, and a 99 potential.

To apply it, just copy the following code into your browser's console (press Ctrl + Shift + I to open it). Before pasting the code, make sure to enable pasting by typing: allow pasting

MAKE SURE YOU'RE ON THE WEBSITE WHEN YOU PASTE THIS CODE

/*
 GET YOUR DB NAME BY GOING INTO DEV TOOLS (CTRL+SHIFT+I)
 CLICK APPLICATION (IF IT IS NOT THERE, CLICK THE >> AND THEN CLICK APPLICATION)
 LOOK ON THE LEFT SIDE AND FIND THE STORAGE CATEGORY
 UNDER STORAGE CLICK 'IndexedDB'
 THERE WILL BE YOUR DB NAME, IT LOOK LIKE
 ValSim-USER-TEAM-TIME
 AND THEN COPY THE DB NAME THAT YOU WANNA EDIT
*/

// OPEN CONNECTION
let request = indexedDB.open('YOUR-DB-NAME');

request.onsuccess = (event) => {
    let db = event.target.result;
    let transaction = db.transaction(['players'], 'readwrite');
    let objectStore = transaction.objectStore('players');

    objectStore.openCursor().onsuccess = (event) => {
        let cursor = event.target.result;
        if (cursor) {
            let player = cursor.value;

                // Set developmentSpeed to 5
                player.developmentSpeed = 5;
                // Set potential to 99
                player.potential = 99;
                // Ensure the latest contract's salary is 0
                if (player.contracts && player.contracts.length > 0) {
                    player.contracts[player.contracts.length - 1].salary = 0;
                }            
                ['aim', 'aggression', 'hs', 'clutch', 'support', 'movement'].forEach(attr => {
                    // 80-90 Rating
                    player[attr] = Math.floor(Math.random() * 11) + 80;
                });
                // Put the updated player back into the database
                cursor.update(player);

            cursor.continue();
        } else {
            console.log('All players have been processed.');
        }
    };

    transaction.oncomplete = function() {
        console.log('Transaction completed: database modification finished.');
    };

    transaction.onerror = function() {
        console.error('Transaction failed');
    };
};
posted 9 months ago

Really don’t planning on making that

I just edit invidual salary values, stats, potential, etc…to make it more fun for me

posted 9 months ago

I had to man

Talon, KRU, EG, & RRQ was rolling everyone

And fucking Sacy downgraded to like T4 level after 1 season

posted 9 months ago

Yeah ratings are broken.

I just went into the DB and edited alot of values myself, it was so stupid

posted 9 months ago

Bang is so insane is and is such a scary player when locked in

Literally the reason why I have recon phantom

He’ll do good on SEN

posted 9 months ago

Simulation had KRU & EG winning everything

What the hell lmfao

posted 9 months ago

That would be sScary…

posted 9 months ago

He’s their TenZ

posted 9 months ago

whichever team picks up panccc will not have a good time in NA

posted 9 months ago

Not even a blue checkmark

He's just hating for the love of the game

posted 9 months ago

so they won more rounds than yfp

hope that helps

posted 9 months ago

j0ng

posted 9 months ago

I might be tripping but I don't think he was being set up for that many kills

posted 9 months ago

No clue bro I live in California

Hope this helps 👍👍

posted 9 months ago

Yes but super reliable and very well documented and good support

You’d be surprised about how many things run off of php

posted 9 months ago

Ummmm this is what I was able to find, pretty easy stuff to find. I don’t know if it’s 100% correct lol
Backend: PHP
Frontend Manipulation: JavaScript and jQuery

Websites running on a Ubuntu server using services like Nginx, Akamai, & Cloudflare

posted 9 months ago

Don’t worry, you got my confirmation.

posted 9 months ago

SEN 2-0

REDUXX TOP FRAGS

posted 9 months ago

my pakistani bros took revenge

posted 9 months ago

bro folded instantly

posted 9 months ago

It will!

posted 9 months ago

N4RRATE is a restricted agent meaning they need to approach KC with a buyout ( I THINK )

Also skuba is a controller player, so I doubt they'd pick him up

posted 9 months ago

Does RBHC know they're having an event too

Where is the schedule or am I stupid

posted 9 months ago

Thats way too many signings & buyouts

SEN is probably gonna play this financially smarter rather than buying up all the good players

More than likely why they decided on Reduxx since OXG is gone lol + he's cracked

posted 9 months ago

Yeah ur right.

Probably Curry on controller and Zellsis flex

posted 9 months ago

Reduxx has been playing omen & gekkko a lot lately, so he's tenz replacement
JohnQT has been spamming Initiator on stream too
Curry likely Senti player
Zellsis is Zellsis
Zekken Duelist

posted 9 months ago
  • Sniped Reduxx so not one else can get him
  • Will win RBHC
  • Move Reduxx down to 6th man for VCT
  • Temporarily move Curry Up
  • Sign N4RRATE
  • Move Curry down when Reduxx hits 18 🔥🔥🔥🔥🔥🔥

JOHNQT ZELLSIS ZEKKEN REDUXX N4RRATE

CHAMPS 2025 & 2026 incoming

posted 9 months ago

Easy engagement bait

posted 9 months ago

😭😭😭😭😭

WHATTTTT

posted 9 months ago

???

posted 9 months ago

he just like me

posted 9 months ago

i thought keznit was just a racist

what did he do

posted 9 months ago

prime candidate for a diddy party invitee

posted 9 months ago

my bad

posted 9 months ago

sinatra mazino flashback george geddes pancc

posted 9 months ago

Cause of people like u lol

Hating on her for no reason

posted 9 months ago
1 •• 44 45 46 47 48 49 50 •• 174