yukky
Flag: Pakistan
Registered: May 8, 2023
Last post: June 21, 2026 at 5:54 PM
Posts: 10035
1 •• 62 63 64 65 66 67 68 •• 193

someone in twitter said this:

Negotiating a contract directly with a player without noticing the org (lev aspas)

posted about a year ago

🥸🥸🥸

posted about a year ago
  • won masters trophy with optic
  • used that prestige to probably get a bag from c9
  • got dropped from c9, and forced them to go down to a budget roster
  • went to pacific and got a fat bag from bleed
  • dipped after one season and starts farming streaming money
  • bleed kicked out & crazy guy now unemployed…..
  • now F/A making it so easy to pick him up

yayster planned this whole thing and made mad money out of it….

posted about a year ago

yay got the final laugh

posted about a year ago

well wouldn’t you sign players from a better region?

posted about a year ago

femboy

posted about a year ago

did more for americas as an import than aspas did this year

posted about a year ago

Was that not a 4k vs LOUD at Reykjavik instead of an ace?

posted about a year ago

😭😭😭😭😭😭😭

posted about a year ago

pogba was so goated man

mbappe is nothing without him on france </3

posted about a year ago

kroos exists

posted about a year ago

no

posted about a year ago

I WILL LET YOU ALL KNOW

HE PLAYED FOR GERMANY AND ALSO SUPPORTS AN INTERESTING POLITICIAN AND ALSO PLAYED LIKE SHIT FOR FENERBAHCE AND ALSO PLAYED FOR BASAKSEHIR AND ALSO HAS A VERY VERY INTERESTING TATOO

posted about a year ago

Language models will always have some level of bias. This can happen because of data poisoning, where the training data isn't properly cleaned up, but it can also come from the people who create the models.

In fact, LLMs can unintentionally reflect racist or biased behavior because they’re trained on huge datasets that may contain prejudiced content, and this can influence how the model responds or generates information without meaning to.

posted about a year ago

yeah happens to me too

its something wiht the game, i usually just restart it

posted about a year ago

My goat you're correct

posted about a year ago

No? You’re doing permutations and counting how many different ways you can arrange 25 agents in every possible order.

This is a combination problem so you’d use n!/k!(n-k)!

So 25!/5!(25-5)!

= 53130

posted about a year ago

haha just saw that awesome feature lmfao

but i guess this lets people edit the stuff without god mod if they started the save without one

also obviously with the code example it gives them an outline of how to edit a ton of features at once rather than one by one manually

cool stuff though!!!

posted about a year ago

Bleed mentioned

posted about a year ago

get better n1cf

posted about a year ago

You can create a template and save that file

There is a load from file option on the site, but I don't know if it'll let you choose other teams if you load

posted about a year ago

Aggression affects the likelihood of a player taking an aggressive fight and/or how likely they are to win an early duel in the round. Having a higher rating will mean the player can take smarter aggressive positioning while someone with a lower rating may position themselves out of place when making an aggressive play.

https://valorantsimulator.com/wiki

posted about a year ago

It'll be hard too, if its an early save you could just start a new one

posted about a year ago

My bad about that, the real tutorial is in the link: https://github.com/yukkymukky/val-sim-edit

posted about a year ago

Wym?

posted about a year ago

i like yukky

posted about a year ago

EG players have a smooth sailing to winning

posted about a year ago

ur so smart

posted about a year ago

its javascript...

posted about a year ago

no worries cloudberry!

i always knew it was a dream of yours

posted about a year ago

haha thanks!

your friend is the real goat for making the site

posted about a year ago

fucking love pistachios but they have such a big calorie creep

posted about a year ago

No idea what this means!!!!

posted about a year ago

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

posted about a year ago

thats a little bit more complicated

posted about a year 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 about a year 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 about a year ago

I had to man

Talon, KRU, EG, & RRQ was rolling everyone

And fucking Sacy downgraded to like T4 level after 1 season

posted about a year ago

Yeah ratings are broken.

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

posted about a year 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 about a year ago

Simulation had KRU & EG winning everything

What the hell lmfao

posted about a year ago

That would be sScary…

posted about a year ago

He’s their TenZ

posted about a year ago

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

posted about a year ago

Not even a blue checkmark

He's just hating for the love of the game

posted about a year ago

so they won more rounds than yfp

hope that helps

posted about a year ago

j0ng

posted about a year ago

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

posted about a year ago
1 •• 62 63 64 65 66 67 68 •• 193