Fifa-Autobidder icon indicating copy to clipboard operation
Fifa-Autobidder copied to clipboard

Selenium-based bot that autobids and autobuys players on FIFA 23 Ultimate Team's transfer market

TMB's FIFA 22 Autobidder

Mac Windows

Discord

Note 1: I built this for me and my friends as a fun side project. I'm making it open source because it's awesome, and paid bots are sus. It is not perfect and use it at your own risk.

Note 2: (1/26/22) This is an entirely new version that works really well -- don't make more than 1000 bids in a day (or 2000 lol). Remember that in using this you are taking a risk and CAN get banned. The stats in config.ini are my last resting stats and see here for my logs down to the minute and second!

Note 3: (2/16/22) I might make a Youtube video explaining how to run it if there are issues. Join the Discord here: https://discord.gg/3ZuA9w6Szk

Note 4: (8/26/22) New version released with all-new UI and automatic filter entry

Intro

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

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

Overview & Features

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

Unlike the more common and widely known botting methods, such as Autobuyers or snipers that rely on speed and luck (and custom JS 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 than a typical browser extension's injected JS, like an Adblocker

Installation

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

  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/Fifa22-Autobidder-main

Command Prompt (Windows):

cd Desktop/Fifa22-Autobidder-main
  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/Fifa22-Autobidder-main

Then:

make run

See Troublehoosting for help.

Windows

In Command Prompt (Windows), enter:

cd Desktop/Fifa22-Autobidder-main

Then:

python src/main.py

See Troublehoosting for help.

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

  1. Login to the webapp manually (do not click the "LOGIN" button on the GUI unless you want auto login, which often causes issue)
  2. In the webapp, manually go to the Search the Transfer Market page.
  3. Apply the filters that match your URL on line 90 in autobidder.py: rarity - nonrare, quality - gold, position - CM. Set the minimum buy now to 9900, maximum buy now 10,000. Do NOT click the "search" button. The bot will do this for you. Double check the filters are accurate.
  4. Click "RUN BOT" button on GUI. The bot should turn green (indicating it is running) and open the FUTBIN url in a new tab, just don't touch anything and let it run. 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.