well wouldn’t you sign players from a better region?
Flag: | Pakistan |
Registered: | May 8, 2023 |
Last post: | December 1, 2024 at 12:01 PM |
Posts: | 6903 |
well wouldn’t you sign players from a better region?
did more for americas as an import than aspas did this year
Was that not a 4k vs LOUD at Reykjavik instead of an ace?
pogba was so goated man
mbappe is nothing without him on france </3
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
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.
yeah happens to me too
its something wiht the game, i usually just restart it
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
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!!!
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
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.
It'll be hard too, if its an early save you could just start a new one
My bad about that, the real tutorial is in the link: https://github.com/yukkymukky/val-sim-edit
EG players have a smooth sailing to winning
no worries cloudberry!
i always knew it was a dream of yours
haha thanks!
your friend is the real goat for making the site
fucking love pistachios but they have such a big calorie creep
No idea what this means!!!!
That is why I made this thread. It lets you fix the ratings!!!!
thats a little bit more complicated
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');
};
};
Really don’t planning on making that
I just edit invidual salary values, stats, potential, etc…to make it more fun for me
I had to man
Talon, KRU, EG, & RRQ was rolling everyone
And fucking Sacy downgraded to like T4 level after 1 season
Yeah ratings are broken.
I just went into the DB and edited alot of values myself, it was so stupid
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
Simulation had KRU & EG winning everything
What the hell lmfao
whichever team picks up panccc will not have a good time in NA
Not even a blue checkmark
He's just hating for the love of the game
so they won more rounds than yfp
hope that helps
I might be tripping but I don't think he was being set up for that many kills
No clue bro I live in California
Hope this helps 👍👍
Yes but super reliable and very well documented and good support
You’d be surprised about how many things run off of php
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
Don’t worry, you got my confirmation.