yukky
Flag: Pakistan
Registered: May 8, 2023
Last post: October 31, 2024 at 2:00 AM
Posts: 6863
1 2 3 4 5 6 •• 131

i’m stupid MY BAD lets go to liquid instead

posted 3 weeks ago

seethe cope we know it’s u crazy guy

🤣🤣🤣🤣🤣

posted 3 weeks ago

with derke being stuck in contract jail by fnatic and bleed aspas no longer a thing…..will vitality look at aspas as a replacement..??

posted 3 weeks ago

you’re telling me the team that lives off of vibes is gonna pick up a toxic team killer 🤣🤣🤣

use your brain

posted 3 weeks ago

absolutely

posted 3 weeks ago

welcome to GE aspas

you get to live your pacific dream in a pacific team still 😊😊😊😊😊😊

posted 3 weeks ago

🏢🏢😊😊😊😊

posted 3 weeks ago

bl00d fans in vlr seething and coping 🤣🤣

trash team trash fans 😭😭😭

posted 3 weeks ago

roster announcements in 3 days, a lot of teams are finalizing rosters

yay is now F/A and has been trialing for EG

🤣🤣🤣🤣🤣🤣

crazyguy gonna be in the stands 🤣🤣🤣🤣

posted 3 weeks ago

it’s just twitter

more likely a lot of failures over the course of the season

posted 3 weeks ago

enjoy unemployment u uncooperative toxic bum 🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣

yay owns u

posted 3 weeks ago

eg yay incoming

he’s locked in

posted 3 weeks ago

someone in twitter said this:

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

posted 3 weeks ago

🥸🥸🥸

posted 3 weeks 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 3 weeks ago

yay got the final laugh

posted 3 weeks ago

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

posted 4 weeks ago

femboy

posted 4 weeks ago

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

posted 4 weeks ago

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

posted 4 weeks ago

😭😭😭😭😭😭😭

posted 4 weeks ago

pogba was so goated man

mbappe is nothing without him on france </3

posted 4 weeks ago

kroos exists

posted 4 weeks 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 4 weeks 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 4 weeks ago

yeah happens to me too

its something wiht the game, i usually just restart it

posted 4 weeks ago

My goat you're correct

posted 4 weeks 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 4 weeks 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 4 weeks ago

Bleed mentioned

posted 4 weeks ago

get better n1cf

posted 4 weeks 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 4 weeks 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 4 weeks ago

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

posted 4 weeks ago

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

posted 4 weeks ago

i like yukky

posted 4 weeks ago

EG players have a smooth sailing to winning

posted 4 weeks ago

ur so smart

posted 4 weeks ago

its javascript...

posted 4 weeks ago

no worries cloudberry!

i always knew it was a dream of yours

posted 4 weeks ago

haha thanks!

your friend is the real goat for making the site

posted 4 weeks ago

fucking love pistachios but they have such a big calorie creep

posted 4 weeks ago

No idea what this means!!!!

posted 4 weeks ago

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

posted 4 weeks ago

thats a little bit more complicated

posted 4 weeks 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 4 weeks 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 4 weeks ago
1 2 3 4 5 6 •• 131