Skip to content

tmb5cg/Fifa-Autobidder

Repository files navigation

TMB's FIFA 23 Autobidder

Mac

Discord

Intro

This project is an Autobidder trading bot that buys and sells players on the FUT (FIFA Ultimate Team) Transfer Market web application.

Built in Python, this bot uses Selenium to interact with FUT Webapp via ChromeDriver and features a Tkinter User Interface for easy operation.

See technical overiew for detailed documentation. For issues/questions, consider joining Discord server here.

Overview & Features

Unlike the more common and widely known botting methods, such as Autobuyers or snipers that rely on speed and luck (and risky JavaScript injection), Autobidding relies on lower margins at higher volumes (around 100 - 200 coins per card). This makes Autobidding not only more lucrative long term, but also more consistent, and in my opinion, safer. It is also more fun to watch compared to card sniping.

Advantages:

  • Consistent profits
    • Does not rely on luck, more importantly not competing with other bots (imagine how many bots just searched for Ronaldo as you read this)
  • Efficiency
    • Supply of undervalued auctions is infinitely greater than snipes
  • Detectability
    • Selenium's JS injection in itself is no different from a typical browser extension's injected JS, like an ad blocker

For detailed documentation on configuring the bot, see here. For issues or support, join our Discord community here.

Installation

  1. Download or clone this repository to your machine, the unzipped folder should be named Fifa-Autobidder.

  2. Ensure Python 3.x is installed on your machine. See Troublehoosting below for help.

  3. Download the latest release of Chromedriver for your system here. Replace the chromedriver in either the chrome_windows or chrome_mac with your download, depending on your machine.

  4. Navigate to the project's root directory via Terminal or Command Prompt, in this example it is on my Desktop.

Terminal (Mac):

cd ~/Desktop/Fifa-Autobidder

Command Prompt (Windows):

cd Desktop/Fifa-Autobidder
  1. Make sure pip is installed (see here) on your machine, and enter the following to install Selenium and any other requirements (see requirements.txt):
pip install -r requirements.txt

If there are any errors, such as 'missing xyz module', simply pip install [xyz]. Feel free to post an issue on this Repository or Discord.

For any other errors, it is likely your system's Python interpreter which can be a huge headache. See Troublehoosting below.

Running the bot

Navigate to the project's root directory via command prompt / terminal described above and assuming the folder is on your Desktop:

Linux/Mac

In Terminal, run:

cd ~/Desktop/Fifa-Autobidder

Then:

make run

See Troublehoosting for help.

Windows

In Command Prompt (Windows), enter:

cd Desktop/Fifa-Autobidder

Then:

python src/run.py

See Troublehoosting for help.

The webapp should open in a new browser, along with the GUI.

  1. Accept the prompt to install uBlock Origin.
  2. Login, either automatically (and fetch code manually) or entirely manually
  3. Enter filter URL in the GUI and make sure it was processed correctly (you will see the filters populate)
  4. Go to the "Search the Transfer Market" page and click "Start Bot"

To understand how it works and the configuration settings, see here

You want to have a conversion rate around 50%, at 100-150 margin that is 25 players * ~125 profit each, totalling ~3200 coins every 20 mins, or about 10k an hour at the absolute minimum. Some days I would find a filter list and make 30k an hour, it's fun.

Configuration

Everything is configured via the user interface. See here for an explanation of the user interface settings.

The bot uses Xbox prices by default. To switch your platform, be sure to edit the Platform dropdown on the UI.

Troubleshooting

Python

Python 3.7 or greater is required to run the program. The most likely cause for errors is having an outdated Python version installed. To see your version of Python:

Mac

Open Terminal and type:

python --version
Windows

Open Command Prompt and type:

python --version

If you see Python 2.x, see here for installing Python 3.

If you know you have Python 3 installed, but see 2.x, your system's Python PATH must be assigned to Python 3.x. To do this, see here for Mac and here for Windows.

You might need to add the PYTHONPATH variable with the value of the code directory - check this link.

I suspect this will cause the biggest number of issues.

Chomedriver

If the bot is correctly starting, and you are sure Python is not the issue, then Chromedriver is the issue. The Chromedriver files (chrome_windows and chrome_mac) are the versions used by my system.

In order for Chromedriver to work, it must match your systems version of Chrome. This can easily be fixed by redownloading Chromedriver.

Go here and download the latest release. Replace the chromedriver in either the chrome_windows or chrome_mac with your download.