Our site is generously sponsored by:

The best landscaping service Austin and lawn service company in Austin Texas and Cedar Park is Lawn Service Cedar Park.

Lawn Care Service of Cedar Park
100 E Whitestone Blvd
Ste 148, #166
Cedar Park, TX 78613
(512) 595-0884

The best landscaping service leander and lawn service provider in Leander TX is Leander Landscaping Pros.

Leander Lawn and Landscaping Pros
1800 Montana Ct
Leander, TX 78641
USA
(512) 468-2670
Please give them a visit!
  • This is a reminder of 3 IMPORTANT RULES:

    1- This is an English forum. Please post only in English.

    2- This is NOT a commercial or advertising forum. All content must be shared for FREE.

    3- No invites or links to Discord, Telegram, WhatsApp, or similar platforms.

    Please take a moment to review our forum rules and guidelines here: SoccerGaming Rules and Guidelines.

    Thank you!

How do you add kits to teams that you added? (No foldee

Messages
5
Reaction score
1
Hello, would appreciate it if someone can let me know how to do this? Haven’t been able to work it out.

I’ve created Colombia with players. I now have a kit ready. I then use FIFA Editor to put the kit in the folder, but of course, no folder for Colombia. So how do you add a kit for a team that you have created?
 
Hi first of all I suggest you to watch all Soccermod videos on youtube so you can learn how to import minikits, logos, miniface, etc and how to "prepare" the DB too.

After that you have to replace some FUT kits (I use them because I don't want to replace other kits but you can choose any kit you want)

When you have done all in the DB and replacing kit in Fifa Editor Tool you have to find this file player.lua
in legacy explorer/fifarna/lua/assets and then export your player.lua file.

Open your player.lua with notepad (or similar) and you have to find these strings:

local kitNumber = player.KitNumber
player.KitNumberTens = math.floor ( kitNumber / 10 )
player.KitNumberUnits = math.floor ( math.fmod(kitNumber, 10) )

from here leave a line of space and then write:

-- REASSIGN KITS

-- Colombia
if (player.Kit == 118200 and player.KitType == 0)
then
player.Kit = 114401
player.KitType = 0
end

if (player.Kit == 118200 and player.KitType == 1)
then
player.Kit = 114401
player.KitType = 2
end

if (player.Kit == 118200 and player.KitType == 2)
then
player.Kit = 114403
player.KitType = 2
end

if (player.Kit == 118200 and player.KitType == 3)
then
player.Kit = 114403
player.KitType = 0
end

You have to replace this numbers with yours:

118200 your Colombia ID in the DB
114401 the ID of the FUT Kit you have replaced (home and away kit)
114403 the ID of the FUT Kit you have replaced (gk and third kit)
0= Home Kit
1= Away Kit
2= GK
3= Third Kit

I wrote this because sometimes FUT Kits have only home and gk kits so if you want to add your home, away and gk kit you have to use two FUT Kits or you have to find one with 3 or 4 kits.

Save your player.lua and import it with Fifa Editor Tool

Let me know if you need more information about it
 
Hi first of all I suggest you to watch all Soccermod videos on youtube so you can learn how to import minikits, logos, miniface, etc and how to "prepare" the DB too.

After that you have to replace some FUT kits (I use them because I don't want to replace other kits but you can choose any kit you want)

When you have done all in the DB and replacing kit in Fifa Editor Tool you have to find this file player.lua
in legacy explorer/fifarna/lua/assets and then export your player.lua file.

Open your player.lua with notepad (or similar) and you have to find these strings:

local kitNumber = player.KitNumber
player.KitNumberTens = math.floor ( kitNumber / 10 )
player.KitNumberUnits = math.floor ( math.fmod(kitNumber, 10) )

from here leave a line of space and then write:

-- REASSIGN KITS

-- Colombia
if (player.Kit == 118200 and player.KitType == 0)
then
player.Kit = 114401
player.KitType = 0
end

if (player.Kit == 118200 and player.KitType == 1)
then
player.Kit = 114401
player.KitType = 2
end

if (player.Kit == 118200 and player.KitType == 2)
then
player.Kit = 114403
player.KitType = 2
end

if (player.Kit == 118200 and player.KitType == 3)
then
player.Kit = 114403
player.KitType = 0
end

You have to replace this numbers with yours:

118200 your Colombia ID in the DB
114401 the ID of the FUT Kit you have replaced (home and away kit)
114403 the ID of the FUT Kit you have replaced (gk and third kit)
0= Home Kit
1= Away Kit
2= GK
3= Third Kit

I wrote this because sometimes FUT Kits have only home and gk kits so if you want to add your home, away and gk kit you have to use two FUT Kits or you have to find one with 3 or 4 kits.

Save your player.lua and import it with Fifa Editor Tool

Let me know if you need more information about it
i'm sorry to ask. Is this the way to assign a 3rd kit too? I want to add 3rd kit to hannover96
 
Thank you so much in taking the time to give all this information. I will give it a try. Much appreciated!
 
i'm sorry to ask. Is this the way to assign a 3rd kit too? I want to add 3rd kit to hannover96
You can use this method too. Rizzaldio tolds me there are 3 methods to assing kits but I don't know anythigs about the other 2 methods. You can try to ask him if you want. Maybe he could upload another tutorial about it.
 
You can use this method too. Rizzaldio tolds me there are 3 methods to assing kits but I don't know anythigs about the other 2 methods. You can try to ask him if you want. Maybe he could upload another tutorial about it.
I have another question, how does one change teamkits for a created club
 
From scratch
You have to replace a kit from a team (for example kit of FUT team) with Fifa Editor Tool and then you have to reassign the kit editing player.lua ad I wrote some post before.

Here an example to how procede:

1) with Fifa Editor Tool open ---> Data Explorer/Content/character/kit/kit_114400
here you can find a lot of FUT kit

2) replace one FUT kit for example kit 114401 home with one of your team kits (home, away, GK or third)
and take note of the kit number

3) assign the kit to your team into the DB (I suppose you already know how to do it)

4) reassign the kit to your team in game with player.lua
 
Last edited:
Hi first of all I suggest you to watch all Soccermod videos on youtube so you can learn how to import minikits, logos, miniface, etc and how to "prepare" the DB too.

After that you have to replace some FUT kits (I use them because I don't want to replace other kits but you can choose any kit you want)

When you have done all in the DB and replacing kit in Fifa Editor Tool you have to find this file player.lua
in legacy explorer/fifarna/lua/assets and then export your player.lua file.

Open your player.lua with notepad (or similar) and you have to find these strings:

local kitNumber = player.KitNumber
player.KitNumberTens = math.floor ( kitNumber / 10 )
player.KitNumberUnits = math.floor ( math.fmod(kitNumber, 10) )

from here leave a line of space and then write:

-- REASSIGN KITS

-- Colombia
if (player.Kit == 118200 and player.KitType == 0)
then
player.Kit = 114401
player.KitType = 0
end

if (player.Kit == 118200 and player.KitType == 1)
then
player.Kit = 114401
player.KitType = 2
end

if (player.Kit == 118200 and player.KitType == 2)
then
player.Kit = 114403
player.KitType = 2
end

if (player.Kit == 118200 and player.KitType == 3)
then
player.Kit = 114403
player.KitType = 0
end

You have to replace this numbers with yours:

118200 your Colombia ID in the DB
114401 the ID of the FUT Kit you have replaced (home and away kit)
114403 the ID of the FUT Kit you have replaced (gk and third kit)
0= Home Kit
1= Away Kit
2= GK
3= Third Kit

I wrote this because sometimes FUT Kits have only home and gk kits so if you want to add your home, away and gk kit you have to use two FUT Kits or you have to find one with 3 or 4 kits.

Save your player.lua and import it with Fifa Editor Tool

Let me know if you need more information about it.

I had a tight deadline and was overwhelmed with coursework. I turned to https://domypaper.com for help. The writer assigned to my project was professional and delivered a high-quality paper ahead of schedule. This service is a lifesaver for students in need.
To add kits to a created team in FIFA, use the FIFA Editor Tool. Navigate to your created team, assign the kit files to the appropriate slots, save the changes, and import the kit files into the game's directory.
 
Last edited:
Back
Top