You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
Paste the code snippet in GetStarted page and run the script.
Change log
Latest version 1.3.0:
Golden player, which shows the top 3 players(overall, potential) on same position.
Save all player change history(overall, potential, skill moves, weak foot), in notification page.
Player List:
Trends:
Notification:
Detail:
Setting:
Get Started:
Older versions:
expand to view
Old version 1.2.0:
New player details page
Notification when a player's overall rating or potential changes
New login page
Player trends:
Player details:
Notification when a player's overall rating or potential changes:
Player list:
Login page:
OLD Version 1.1.0:
Add Login page
Add settings page(Secret key Management, Logout)
Add get started page(How to use)
OLD Version 1.0.1:
Change the player trends chart style.
OLD Version 1.0.0:
Player list:
Player trends:
Important Note && Tips
1. In-game Date Might Not Be Perfectly Accurate!
You might have noticed that we’re tracking player stat growth as the in-gametime changes.BUT here’s a little secret: it’s tricky for us to get the exact in-game date!We used to pull that data from the “career_table” you can find in the LiveEditor under the Table tab. But after a certain game update, the data in thattable isn’t accurate anymore. Interestingly, I found a pattern: the table isaccurate when you first enter Career Mode or after you play a match. So,based on that, we had to create a manual time calculation method by listeningto the DAY_PASSED event in the game and cross-referencing it with the data wecan still get. It’s a bit clunky, and I had to add a bunch of redundant codeto make it work. But for now, that’s our only option. So, when using thisscript, don’t rely too heavily on the in-game date, as it might not bespot-on.And please, run this script immediately after entering Career Mode to get themost accurate data possible. Otherwise, the data will only become accurateafter you play a match.Our Tip: Run this script right after entering Career Mode!
2. The Annoying Black Window! It might steal your focus.
Let me explain how this works. Our application relies on the functionsprovided by Live Editor. Whenever the WEEK_PASSED event is triggered in thegame, our Lua script runs, collecting data from all your current team playersand sending it to our server. But here’s the catch: Live Editor doesn’t offera way to send API requests directly to an external server, so we’re usingWindows’ Curl command to do that. Unfortunately, every time we run thatcommand, a black window pops up because we’re executing Curl in the Windowssystem. And sometimes, this black window might steal focus from your game,which is a bummer. It doesn’t happen every time, but it’s possible. It’s farfrom perfect, but it’s the best we can do right now. I’m sorry about thisinconvenience, but I’m constantly searching for a better solution. So, whileusing this application, please don’t close that black window—it’s busysending the API request. If your network isn’t too slow, the window shoulddisappear quickly. In my experience, it’s bearable since the black windowonly pops up once per in-game week. And hey, it’s a small price to pay forkeeping track of your players’ progress, right? Rest assured, I’m on thelookout for a better solution, and I’ll update the application as soon as wefind one. Thanks for your understanding!
3. Only One Save Slot Supported!
During the closed beta, we’re only supporting one save slot. This is becauseour server resources are limited, and we can’t provide a separate save forevery single user. Plus, I doubt anyone is switching save files back andforth that often, so I think this limitation is fair. In the future, we mightoffer more save slots, but who knows? The future is full of surprises!
4. Issues Caused by Insufficient File System Permissions
Let me explain why this script requires file system permissions. As wementioned earlier, we use the command line to directly execute a curl commandto send your player data. However, due to the numerous player attributes, theJSON data string can get very long, making it impossible to concatenate allthis data in a single line of curl, as it exceeds the command line's allowedlength. Therefore, what I do is write this data to a file first and thenconcatenate the file's path in the command. Based on this, please ensure youhave administrative privileges and write permissions for the folder.Generally, we will write to the root directory of the EA FC game, and ifwriting fails, an error will be displayed: "Permission denied."
About
A fully-automated EA FIFA career mode player tracking tool.