• This is a reminder of 3 IMPORTANT RULES:

    1- External self-promotion websites or apps are NOT allowed here, like Discord/Twitter/Patreon/etc.

    2- Do NOT post in other languages. English-only.

    3- Crack/Warez/Piracy talk is NOT allowed.

    Breaking any of the above rules will result in your messages being deleted and you will be banned upon repetition.

    Please, stop by this thread SoccerGaming Forum Rules And Guidelines and make sure you read and understand our policies.

    Thank you!

[FIFA12] - PATCHES and MODS by Doctor+ Productions (Fidel Gameplay)

intenseblitz

Red Card - life - multiple accounts
Life Ban
sry I cant create a thread something is messed up in the matrix maybe cookies?
anyways where in here using your Career Mode Editor can I stop Transfers
from happening please and thank you


Code:
[TRANSFER]

// -----------------------------------------------------------------------------
// Transfer News
// -----------------------------------------------------------------------------

MIN_OVERALL_FOR_TOP_PLAYER = 76 // The minimum overall a player should have to trigger a news item
MIN_TEAM_RANK_FOR_TOP_PLAYER = 4 // The mimimum position within the team to be considered a top player
FORCE_USER_BID_CHANCE = 12	// Daily chance that we attempt to force a bid on a user player
FORCE_USER_BID_MIN_DAYS = 3	// Min days the player should be on the list before bids come in (>= check)
FORCE_USER_BID_NUMTEAMS = 5	// Number of teams we attempt to find to bid on that we randomly choose from
FORCE_USER_BID_LISTVSLOAN = 50	// % chance that we look at the listed player vs loan ( < for list and > for loan )

// -----------------------------------------------------------------------------
// Transfer Acceptance

YOUNG_PLAYER_AGE = 23
OLD_PLAYER_AGE = 35
MAX_AGE_FOR_LOAN = 21

PLAYER_HIGH_UNFULFILLED_POTENTIAL = 6
TEAM_POINTS_IN_COMPETITION = 6
// These are the minimum number of players in a given position (GK, SW, RWB, etc)
MIN_PLAYERS_POSITION_GK = 2
MIN_PLAYERS_POSITION_RB = 2
MIN_PLAYERS_POSITION_CB = 4
MIN_PLAYERS_POSITION_LB = 2
MIN_PLAYERS_POSITION_RM = 2
MIN_PLAYERS_POSITION_CM = 4
MIN_PLAYERS_POSITION_LM = 2
MIN_PLAYERS_POSITION_ST = 3
SUPERSTAR_PLAYER_OVERALL = 85 // The overall for a player to be considered a superstar

// The following is the relative (measured as percentage) distance between the player and the team overalls is no more than 5%
TRANSFER_TEAM_PLAYER_OVERALL_THRESHOLD = 15

// The following is the relative (measured as percentage) distance between the teams overalls is no more than 40% (to avoid the buying team is way better than the selling one)
TEAMS_OVERALL_PERCENTAGE_THRESHOLD = 50
TOP_PLAYERS = 3 // The number of the top players (e.g. the first 3 players). This is used for example to calculate the player real value

// The following is used to calculate the player real value, used along with TOP_PLAYERS. Say, the top 3 players' real values are multiplied by 1.25
GEM_PLAYER_REAL_VALUE_MULTIPLIER = 1.3
SUPERSTAR_PLAYER_REAL_VALUE_MULTIPLIER = 1.3
TOP_PLAYER_REAL_VALUE_MULTIPLIER = 1.15

// The following is used to calculate the player real value (for the non-listed ones)
STARTING11_REAL_VALUE_MULTIPLIER = 1.0
BENCH_REAL_VALUE_MULTIPLIER = 0.9
RESERVES_REAL_VALUE_MULTIPLIER = 0.8
TEAM_RIVALRY_REAL_VALUE_ADDER = 0.4

// The following is the wage multipliler: for every player growth point since his last contract sign, he will ask +$2000
PLAYER_GROWTH_WAGE_MULTIPLIER = 1000.0
MAX_COUNTER_OFFERS = 6
MAX_DAYS_TO_RESPOND = 6
MIN_DAYS_TO_RESPOND = 3
BUYING_FREE_AGENTS_PROBABILITY = 10
MIN_FREE_AGENTS_WAGE_VARIATION_PROBABILITY = 10
FREE_AGENTS_VARIATION_PERCENTAGE = 10
CHANCE_OF_OFFER = 50
TEAM_PLAYER_OVERALL_MAX_DIFF = 8
CHANCE_PER_DAY = 20
MIN_NUM_WAITING_DAYS = 3


//Settings to say if the cpu should improve their offer when the user rejects
CHANCE_OFFER_SHOULD_BE_IMPROVED = 50
MIN_OFFER_IMPROVEMENT_PERCENT = 10
MAX_OFFER_IMPROVEMENT_PERCENT = 30


//WHAT TEAMS WILL ACCEPT!!!  The max variance BELOW 0 from the base player value for creating and accepting offers ( transfer listed ) eg. base value $10,000.  Variance = -30 means offer can be as low as $7,000 

MAX_ACCEPTANCE_VARIANCE_PERCENT_FOR_LISTED_PLAYERS = 20	// This means minus whatever number is here. It's the max below the amount they will accept.


// For a $1m player, they will randomly pick a value between 900k (-10%) & 1.5m (+50%) and that will be the minimum they will accept.
MAX_ACCEPTANCE_VARIANCE_PERCENT_STARTING11 = 35
MIN_ACCEPTANCE_VARIANCE_PERCENT_STARTING11 = -10

MAX_ACCEPTANCE_VARIANCE_PERCENT_SUB = 20
MIN_ACCEPTANCE_VARIANCE_PERCENT_SUB = -20

MAX_ACCEPTANCE_VARIANCE_PERCENT_RESERVE = 15
MIN_ACCEPTANCE_VARIANCE_PERCENT_RESERVE = -30

MAX_CPU_ACCEPTANCE_VARIANCE_PERCENT_FOR_LISTED_PLAYERS = 25	// This means minus whatever number is here. It's the max below the amount they will accept.

MIN_CPU_ACCEPTANCE_VARIANCE_PERCENT_STARTING11 = -10
MAX_CPU_ACCEPTANCE_VARIANCE_PERCENT_STARTING11 = -9

MIN_CPU_ACCEPTANCE_VARIANCE_PERCENT_SUB = -15
MAX_CPU_ACCEPTANCE_VARIANCE_PERCENT_SUB = -10

MIN_CPU_ACCEPTANCE_VARIANCE_PERCENT_RESERVE = -20
MAX_CPU_ACCEPTANCE_VARIANCE_PERCENT_RESERVE = -15


// Probability (hence in the range [0%; 100%]) of relocating in another country/league
// Please note the indices are zero-based, with the following meaning:
// 0 = Top League; 1 = Medium League ; 2 = Lower League; 3 = Non-European League
RELOCATION_PROBABILITY_0_0 = 100
RELOCATION_PROBABILITY_0_1 = 10
RELOCATION_PROBABILITY_0_2 = 5
RELOCATION_PROBABILITY_0_3 = 0

RELOCATION_PROBABILITY_1_0 = 100
RELOCATION_PROBABILITY_1_1 = 100
RELOCATION_PROBABILITY_1_2 = 5
RELOCATION_PROBABILITY_1_3 = 5

RELOCATION_PROBABILITY_2_0 = 100
RELOCATION_PROBABILITY_2_1 = 100
RELOCATION_PROBABILITY_2_2 = 100
RELOCATION_PROBABILITY_2_3 = 35

RELOCATION_PROBABILITY_3_0 = 100
RELOCATION_PROBABILITY_3_1 = 90
RELOCATION_PROBABILITY_3_2 = 80
RELOCATION_PROBABILITY_3_3 = 50

// Now special cases for EFIGS-EFIGS transfers
RELOCATION_PROBABILITY_E_E = 100 // England to England
RELOCATION_PROBABILITY_E_F = 10 // England to France
RELOCATION_PROBABILITY_E_I = 10 // England to Italy
RELOCATION_PROBABILITY_E_G = 15 // England to Germany
RELOCATION_PROBABILITY_E_S = 10 // England to Spain

RELOCATION_PROBABILITY_F_E = 50 // France to England
RELOCATION_PROBABILITY_F_F = 100
RELOCATION_PROBABILITY_F_I = 15
RELOCATION_PROBABILITY_F_G = 30
RELOCATION_PROBABILITY_F_S = 40

RELOCATION_PROBABILITY_I_E = 20
RELOCATION_PROBABILITY_I_F = 5
RELOCATION_PROBABILITY_I_I = 100
RELOCATION_PROBABILITY_I_G = 5
RELOCATION_PROBABILITY_I_S = 10

RELOCATION_PROBABILITY_G_E = 10
RELOCATION_PROBABILITY_G_F = 10
RELOCATION_PROBABILITY_G_I = 10
RELOCATION_PROBABILITY_G_G = 100
RELOCATION_PROBABILITY_G_S = 10

RELOCATION_PROBABILITY_S_E = 25
RELOCATION_PROBABILITY_S_F = 5
RELOCATION_PROBABILITY_S_I = 20
RELOCATION_PROBABILITY_S_G = 15
RELOCATION_PROBABILITY_S_S = 100

// http://portal.eac.ea.com/sites/football/fifa/11/console/External%20Briefs/Career%20Mode%20FB%27s/Transfer%20logic.xlsx ( parsing like a row-major matrix )
// Basically these values are for how much or less $$$ a player would ask : if a 4.5+ rated player wants to play in a sucky team (<60) they will have to play 30% lower wages.
// And it depends on the league of the teams: if a club from a league that is rated 4.5+ tries to sign a player from a league 3 stars rated league, they have to up to 20% of "discount"

// Club Star Rating: 5 stars
CLUB_LEVEL_DELTA_WAGE_MODIFIER_0_0 = 0          // Player > 90
CLUB_LEVEL_DELTA_WAGE_MODIFIER_0_1 = 0          // Player > 80    
CLUB_LEVEL_DELTA_WAGE_MODIFIER_0_2 = 0  	// Player > 75
CLUB_LEVEL_DELTA_WAGE_MODIFIER_0_3 = -5  	// Player > 70
CLUB_LEVEL_DELTA_WAGE_MODIFIER_0_4 = -10  	// Player > 65
CLUB_LEVEL_DELTA_WAGE_MODIFIER_0_5 = -15  	// Player > 60
CLUB_LEVEL_DELTA_WAGE_MODIFIER_0_6 = -20  	// Player <= 60

// Club Star Rating: 4 1/2 stars
CLUB_LEVEL_DELTA_WAGE_MODIFIER_1_0 = 0          // Player > 90
CLUB_LEVEL_DELTA_WAGE_MODIFIER_1_1 = 0          // Player > 80
CLUB_LEVEL_DELTA_WAGE_MODIFIER_1_2 = 0          // Player > 75
CLUB_LEVEL_DELTA_WAGE_MODIFIER_1_3 = -5         // Player > 70
CLUB_LEVEL_DELTA_WAGE_MODIFIER_1_4 = -10  	// Player > 65
CLUB_LEVEL_DELTA_WAGE_MODIFIER_1_5 = -15  	// Player > 60
CLUB_LEVEL_DELTA_WAGE_MODIFIER_1_6 = -15  	// Player <= 60

// Club Star Rating: 4 stars
CLUB_LEVEL_DELTA_WAGE_MODIFIER_2_0 = 10         // Player > 90
CLUB_LEVEL_DELTA_WAGE_MODIFIER_2_1 = 5         // Player > 80
CLUB_LEVEL_DELTA_WAGE_MODIFIER_2_2 = 0          // Player > 75
CLUB_LEVEL_DELTA_WAGE_MODIFIER_2_3 = 0          // Player > 70
CLUB_LEVEL_DELTA_WAGE_MODIFIER_2_4 = 0          // Player > 65
CLUB_LEVEL_DELTA_WAGE_MODIFIER_2_5 = -5         // Player > 60
CLUB_LEVEL_DELTA_WAGE_MODIFIER_2_6 = -15  	// Player <= 60

// Club Star Rating: 3 1/2 stars
CLUB_LEVEL_DELTA_WAGE_MODIFIER_3_0 = 20  	// Player > 90
CLUB_LEVEL_DELTA_WAGE_MODIFIER_3_1 = 15         // Player > 80
CLUB_LEVEL_DELTA_WAGE_MODIFIER_3_2 = 10         // Player > 75
CLUB_LEVEL_DELTA_WAGE_MODIFIER_3_3 = 5          // Player > 70
CLUB_LEVEL_DELTA_WAGE_MODIFIER_3_4 = 0          // Player > 65
CLUB_LEVEL_DELTA_WAGE_MODIFIER_3_5 = 0          // Player > 60
CLUB_LEVEL_DELTA_WAGE_MODIFIER_3_6 = -5         // Player <= 60

// Club Star Rating: 3 stars
CLUB_LEVEL_DELTA_WAGE_MODIFIER_4_0 = 100  	// Player > 90
CLUB_LEVEL_DELTA_WAGE_MODIFIER_4_1 = 50  	// Player > 80
CLUB_LEVEL_DELTA_WAGE_MODIFIER_4_2 = 25  	// Player > 75
CLUB_LEVEL_DELTA_WAGE_MODIFIER_4_3 = 15         // Player > 70
CLUB_LEVEL_DELTA_WAGE_MODIFIER_4_4 = 5         // Player > 65
CLUB_LEVEL_DELTA_WAGE_MODIFIER_4_5 = 0         // Player > 60
CLUB_LEVEL_DELTA_WAGE_MODIFIER_4_6 = 0          // Player <= 60

// Club Star Rating: 2 1/2 stars
CLUB_LEVEL_DELTA_WAGE_MODIFIER_5_0 = 200  	// Player > 90
CLUB_LEVEL_DELTA_WAGE_MODIFIER_5_1 = 150  	// Player > 80
CLUB_LEVEL_DELTA_WAGE_MODIFIER_5_2 = 100  	// Player > 75
CLUB_LEVEL_DELTA_WAGE_MODIFIER_5_3 = 50  	// Player > 70
CLUB_LEVEL_DELTA_WAGE_MODIFIER_5_4 = 20  	// Player > 65
CLUB_LEVEL_DELTA_WAGE_MODIFIER_5_5 = 10         // Player > 60
CLUB_LEVEL_DELTA_WAGE_MODIFIER_5_6 = 0          // Player <= 60


// Club Star Rating: < 2 stars
CLUB_LEVEL_DELTA_WAGE_MODIFIER_6_0 = 300  	// Player > 90
CLUB_LEVEL_DELTA_WAGE_MODIFIER_6_1 = 250  	// Player > 80
CLUB_LEVEL_DELTA_WAGE_MODIFIER_6_2 = 200  	// Player > 75
CLUB_LEVEL_DELTA_WAGE_MODIFIER_6_3 = 150  	// Player > 70
CLUB_LEVEL_DELTA_WAGE_MODIFIER_6_4 = 100  	// Player > 65
CLUB_LEVEL_DELTA_WAGE_MODIFIER_6_5 = 50         // Player > 60
CLUB_LEVEL_DELTA_WAGE_MODIFIER_6_6 = 0          // Player <= 60


LEAGUE_PRESTIGE_WAGE_MODIFIER_0_0 = 0
LEAGUE_PRESTIGE_WAGE_MODIFIER_0_1 = -10
LEAGUE_PRESTIGE_WAGE_MODIFIER_0_2 = -15
LEAGUE_PRESTIGE_WAGE_MODIFIER_0_3 = -20
LEAGUE_PRESTIGE_WAGE_MODIFIER_0_4 = -25
LEAGUE_PRESTIGE_WAGE_MODIFIER_0_5 = -30
LEAGUE_PRESTIGE_WAGE_MODIFIER_0_6 = -40

LEAGUE_PRESTIGE_WAGE_MODIFIER_1_0 = 0
LEAGUE_PRESTIGE_WAGE_MODIFIER_1_1 = 0
LEAGUE_PRESTIGE_WAGE_MODIFIER_1_2 = -10
LEAGUE_PRESTIGE_WAGE_MODIFIER_1_3 = -15
LEAGUE_PRESTIGE_WAGE_MODIFIER_1_4 = -20
LEAGUE_PRESTIGE_WAGE_MODIFIER_1_5 = -25
LEAGUE_PRESTIGE_WAGE_MODIFIER_1_6 = -30

LEAGUE_PRESTIGE_WAGE_MODIFIER_2_0 = 0
LEAGUE_PRESTIGE_WAGE_MODIFIER_2_1 = 0
LEAGUE_PRESTIGE_WAGE_MODIFIER_2_2 = 0
LEAGUE_PRESTIGE_WAGE_MODIFIER_2_3 = -10
LEAGUE_PRESTIGE_WAGE_MODIFIER_2_4 = -15
LEAGUE_PRESTIGE_WAGE_MODIFIER_2_5 = -20
LEAGUE_PRESTIGE_WAGE_MODIFIER_2_6 = -25

LEAGUE_PRESTIGE_WAGE_MODIFIER_3_0 = 0
LEAGUE_PRESTIGE_WAGE_MODIFIER_3_1 = 0
LEAGUE_PRESTIGE_WAGE_MODIFIER_3_2 = 0
LEAGUE_PRESTIGE_WAGE_MODIFIER_3_3 = 0
LEAGUE_PRESTIGE_WAGE_MODIFIER_3_4 = -10
LEAGUE_PRESTIGE_WAGE_MODIFIER_3_5 = -15
LEAGUE_PRESTIGE_WAGE_MODIFIER_3_6 = -20

LEAGUE_PRESTIGE_WAGE_MODIFIER_4_0 = 0
LEAGUE_PRESTIGE_WAGE_MODIFIER_4_1 = 0
LEAGUE_PRESTIGE_WAGE_MODIFIER_4_2 = 0
LEAGUE_PRESTIGE_WAGE_MODIFIER_4_3 = 0
LEAGUE_PRESTIGE_WAGE_MODIFIER_4_4 = 0
LEAGUE_PRESTIGE_WAGE_MODIFIER_4_5 = -10
LEAGUE_PRESTIGE_WAGE_MODIFIER_4_6 = -15

LEAGUE_PRESTIGE_WAGE_MODIFIER_5_0 = 0
LEAGUE_PRESTIGE_WAGE_MODIFIER_5_1 = 0
LEAGUE_PRESTIGE_WAGE_MODIFIER_5_2 = 0
LEAGUE_PRESTIGE_WAGE_MODIFIER_5_3 = 0
LEAGUE_PRESTIGE_WAGE_MODIFIER_5_4 = 0
LEAGUE_PRESTIGE_WAGE_MODIFIER_5_5 = 0
LEAGUE_PRESTIGE_WAGE_MODIFIER_5_6 = -10

LEAGUE_PRESTIGE_WAGE_MODIFIER_6_0 = 0
LEAGUE_PRESTIGE_WAGE_MODIFIER_6_1 = 0
LEAGUE_PRESTIGE_WAGE_MODIFIER_6_2 = 0
LEAGUE_PRESTIGE_WAGE_MODIFIER_6_3 = 0
LEAGUE_PRESTIGE_WAGE_MODIFIER_6_4 = 0
LEAGUE_PRESTIGE_WAGE_MODIFIER_6_5 = 0
LEAGUE_PRESTIGE_WAGE_MODIFIER_6_6 = 0

//England to : 
PLAYER_NATIONALITY_TRANSFER_TABLE_0_0 = 25  	//England
PLAYER_NATIONALITY_TRANSFER_TABLE_0_1 = -45  	//France
PLAYER_NATIONALITY_TRANSFER_TABLE_0_2 = -45 	//Italy
PLAYER_NATIONALITY_TRANSFER_TABLE_0_3 = -25  	//Germany
PLAYER_NATIONALITY_TRANSFER_TABLE_0_4 = -30  	//Spain
PLAYER_NATIONALITY_TRANSFER_TABLE_0_5 = 25 	//UK
PLAYER_NATIONALITY_TRANSFER_TABLE_0_6 = -25  	//Germanic
PLAYER_NATIONALITY_TRANSFER_TABLE_0_7 = -30 	//Western Europe
PLAYER_NATIONALITY_TRANSFER_TABLE_0_8 = -50	//Eastern Bloc
PLAYER_NATIONALITY_TRANSFER_TABLE_0_9 = -45     //South American

//France to : 
PLAYER_NATIONALITY_TRANSFER_TABLE_1_0 = 25 	//England
PLAYER_NATIONALITY_TRANSFER_TABLE_1_1 = 25   //France
PLAYER_NATIONALITY_TRANSFER_TABLE_1_2 = 10  //Italy
PLAYER_NATIONALITY_TRANSFER_TABLE_1_3 = 15  //Germany
PLAYER_NATIONALITY_TRANSFER_TABLE_1_4 = 15 	//Spain
PLAYER_NATIONALITY_TRANSFER_TABLE_1_5 = 10 	//UK
PLAYER_NATIONALITY_TRANSFER_TABLE_1_6 = 15  //Germanic
PLAYER_NATIONALITY_TRANSFER_TABLE_1_7 = 15  //Western Europe
PLAYER_NATIONALITY_TRANSFER_TABLE_1_8 = -5  //Eastern Bloc
PLAYER_NATIONALITY_TRANSFER_TABLE_1_9 = -20 //South American

//Italy to : 
PLAYER_NATIONALITY_TRANSFER_TABLE_2_0 = -15 //England
PLAYER_NATIONALITY_TRANSFER_TABLE_2_1 = -30  //France
PLAYER_NATIONALITY_TRANSFER_TABLE_2_2 = 25   //Italy
PLAYER_NATIONALITY_TRANSFER_TABLE_2_3 = -10   //Germany
PLAYER_NATIONALITY_TRANSFER_TABLE_2_4 = 0   //Spain
PLAYER_NATIONALITY_TRANSFER_TABLE_2_5 = -20 //UK
PLAYER_NATIONALITY_TRANSFER_TABLE_2_6 = -5  //Germanic
PLAYER_NATIONALITY_TRANSFER_TABLE_2_7 = 15  //Western Europe
PLAYER_NATIONALITY_TRANSFER_TABLE_2_8 = -10  //Eastern Bloc
PLAYER_NATIONALITY_TRANSFER_TABLE_2_9 = -20  //South American

//Germany to : 
PLAYER_NATIONALITY_TRANSFER_TABLE_3_0 = 10 		//England
PLAYER_NATIONALITY_TRANSFER_TABLE_3_1 = -20 		//France
PLAYER_NATIONALITY_TRANSFER_TABLE_3_2 = -10   	//Italy
PLAYER_NATIONALITY_TRANSFER_TABLE_3_3 = 25   	//Germany
PLAYER_NATIONALITY_TRANSFER_TABLE_3_4 = 10 		//Spain
PLAYER_NATIONALITY_TRANSFER_TABLE_3_5 = -15 		//UK
PLAYER_NATIONALITY_TRANSFER_TABLE_3_6 = 25  	//Germanic
PLAYER_NATIONALITY_TRANSFER_TABLE_3_7 = 5  		//Western Europe
PLAYER_NATIONALITY_TRANSFER_TABLE_3_8 = 15 		//Eastern Bloc
PLAYER_NATIONALITY_TRANSFER_TABLE_3_9 = -20  	//South American

//spain to : 
PLAYER_NATIONALITY_TRANSFER_TABLE_4_0 = 15  //England
PLAYER_NATIONALITY_TRANSFER_TABLE_4_1 = -25   //France
PLAYER_NATIONALITY_TRANSFER_TABLE_4_2 = 0   //Italy
PLAYER_NATIONALITY_TRANSFER_TABLE_4_3 = 0    //Germany
PLAYER_NATIONALITY_TRANSFER_TABLE_4_4 = 25    //Spain
PLAYER_NATIONALITY_TRANSFER_TABLE_4_5 = -15  //UK
PLAYER_NATIONALITY_TRANSFER_TABLE_4_6 = 5    //Germanic
PLAYER_NATIONALITY_TRANSFER_TABLE_4_7 = 15   //Western Europe
PLAYER_NATIONALITY_TRANSFER_TABLE_4_8 = -10    //Eastern Bloc
PLAYER_NATIONALITY_TRANSFER_TABLE_4_9 = 15   //South American

//UK to : 
PLAYER_NATIONALITY_TRANSFER_TABLE_5_0 = 25   //England
PLAYER_NATIONALITY_TRANSFER_TABLE_5_1 = -25   //France
PLAYER_NATIONALITY_TRANSFER_TABLE_5_2 = -30  //Italy
PLAYER_NATIONALITY_TRANSFER_TABLE_5_3 = -20  //Germany
PLAYER_NATIONALITY_TRANSFER_TABLE_5_4 = -30  //Spain
PLAYER_NATIONALITY_TRANSFER_TABLE_5_5 = 25    //UK
PLAYER_NATIONALITY_TRANSFER_TABLE_5_6 = -15  //Germanic
PLAYER_NATIONALITY_TRANSFER_TABLE_5_7 = -15    //Western Europe
PLAYER_NATIONALITY_TRANSFER_TABLE_5_8 = -20  //Eastern Bloc
PLAYER_NATIONALITY_TRANSFER_TABLE_5_9 = -20    //South American

//Germanic to : 
PLAYER_NATIONALITY_TRANSFER_TABLE_6_0 = 10  //England
PLAYER_NATIONALITY_TRANSFER_TABLE_6_1 = 10   //France
PLAYER_NATIONALITY_TRANSFER_TABLE_6_2 = 10    //Italy
PLAYER_NATIONALITY_TRANSFER_TABLE_6_3 = 25   //Germany
PLAYER_NATIONALITY_TRANSFER_TABLE_6_4 = 5    //Spain
PLAYER_NATIONALITY_TRANSFER_TABLE_6_5 = -10  //UK
PLAYER_NATIONALITY_TRANSFER_TABLE_6_6 = 25    //Germanic
PLAYER_NATIONALITY_TRANSFER_TABLE_6_7 = 15   //Western Europe
PLAYER_NATIONALITY_TRANSFER_TABLE_6_8 = 15   //Eastern Bloc
PLAYER_NATIONALITY_TRANSFER_TABLE_6_9 = -20   //South American

//western Europe to : 
PLAYER_NATIONALITY_TRANSFER_TABLE_7_0 = 18  //England
PLAYER_NATIONALITY_TRANSFER_TABLE_7_1 = -5  //France
PLAYER_NATIONALITY_TRANSFER_TABLE_7_2 = 10    //Italy
PLAYER_NATIONALITY_TRANSFER_TABLE_7_3 = 15    //Germany
PLAYER_NATIONALITY_TRANSFER_TABLE_7_4 = 25    //Spain
PLAYER_NATIONALITY_TRANSFER_TABLE_7_5 = 8  //UK
PLAYER_NATIONALITY_TRANSFER_TABLE_7_6 = 15   //Germanic
PLAYER_NATIONALITY_TRANSFER_TABLE_7_7 = 25    //Western Europe
PLAYER_NATIONALITY_TRANSFER_TABLE_7_8 = 12   //Eastern Bloc
PLAYER_NATIONALITY_TRANSFER_TABLE_7_9 = -20   //South American

//Eastern Bloc to : 
PLAYER_NATIONALITY_TRANSFER_TABLE_8_0 = 15  //England
PLAYER_NATIONALITY_TRANSFER_TABLE_8_1 = 10   //France
PLAYER_NATIONALITY_TRANSFER_TABLE_8_2 = 10  //Italy
PLAYER_NATIONALITY_TRANSFER_TABLE_8_3 = 20   //Germany
PLAYER_NATIONALITY_TRANSFER_TABLE_8_4 = 0  //Spain
PLAYER_NATIONALITY_TRANSFER_TABLE_8_5 = -10  //UK
PLAYER_NATIONALITY_TRANSFER_TABLE_8_6 = 20   //Germanic
PLAYER_NATIONALITY_TRANSFER_TABLE_8_7 = 15   //Western Europe
PLAYER_NATIONALITY_TRANSFER_TABLE_8_8 = 20    //Eastern Bloc
PLAYER_NATIONALITY_TRANSFER_TABLE_8_9 = -20    //South American

//South America to : 
PLAYER_NATIONALITY_TRANSFER_TABLE_9_0 = 20  //England
PLAYER_NATIONALITY_TRANSFER_TABLE_9_1 = 10  //France
PLAYER_NATIONALITY_TRANSFER_TABLE_9_2 = 20  //Italy
PLAYER_NATIONALITY_TRANSFER_TABLE_9_3 = 20  //Germany
PLAYER_NATIONALITY_TRANSFER_TABLE_9_4 = 25  //Spain
PLAYER_NATIONALITY_TRANSFER_TABLE_9_5 = 5  //UK
PLAYER_NATIONALITY_TRANSFER_TABLE_9_6 = 15  //Germanic
PLAYER_NATIONALITY_TRANSFER_TABLE_9_7 = 20  //Western Europe
PLAYER_NATIONALITY_TRANSFER_TABLE_9_8 = 5  //Eastern Bloc
PLAYER_NATIONALITY_TRANSFER_TABLE_9_9 = 20  //South American


// Salary per week :)
TRANSFER_MINIMUM_SALARY_0 = 2250
TRANSFER_MINIMUM_SALARY_1 = 2000
TRANSFER_MINIMUM_SALARY_2 = 1750
TRANSFER_MINIMUM_SALARY_3 = 1500
TRANSFER_MINIMUM_SALARY_4 = 1250
TRANSFER_MINIMUM_SALARY_5 = 1000
TRANSFER_MINIMUM_SALARY_6 = 750

// League ratings
// It uses the following scale system (as seen in TeamUtil.h):
// 0 = LEAGUERATINGRANGE_4POINT5, for ratings rating >4.5 stars
// 1 = LEAGUERATINGRANGE_4, for ratings rating >4 stars
// 2 = LEAGUERATINGRANGE_3POINT5, for ratings rating >3.5 stars
// 3 = LEAGUERATINGRANGE_3, for ratings rating >3 stars
// 4 = LEAGUERATINGRANGE_2POINT5, for ratings rating >2.5 stars
// 5 = LEAGUERATINGRANGE_2, for ratings rating >2 stars
// 6 = LEAGUERATINGRANGE_OTHER, for ratings rating <=2 stars

LEAGUERATING_AUSTRALIA = 6			//
 

intenseblitz

Red Card - life - multiple accounts
Life Ban
How about

[CAREERMODE_MANAGERS]
CONCURRENTMATCH = 1
DEBUGSTATS = 1
FITNESS = 1
NEWS = 1
PLAYASPLAYER = 1
PLAYERGROWTH = 1
PLAYERREGEN = 1
PLAYERVALUE = 1
PLAYERWAGE = 1
SUSPENSION = 1
TEAMMOVE = 1
AWARDS = 1
TICKER = 1
DYNAMICTABLE = 1
TRANSFER = 1
BUDGET = 1 <---------- Setting this to 0 ????
 

thutmozis

Club Supporter
Hello to everyone!

Please help me!!!!! My fifa 12 is lagging. I try to take various version (DVD5 and RASOR1911) but always the same= lagging. I have NVIDIA Geforce 250 video card with the latest firmwire, so it seems this part is all right. My computer is well enough so it won't be a hardware problem. I try Fidel's Gameplay evolution tool, and REAL PERFORMANCE OPTIMIZER V. 1.0 and 2.0 but the game is still lagging. I'm very hopeless, it seems nothing to solve my lagging problem, and I can't enjoy the game like this. I hope someone could help me. Many thanks mates!!!!
 

bangus

Starting XI
thutmozis;3131414 said:
Hello to everyone!

Please help me!!!!! My fifa 12 is lagging. I try to take various version (DVD5 and RASOR1911) but always the same= lagging. I have NVIDIA Geforce 250 video card with the latest firmwire, so it seems this part is all right. My computer is well enough so it won't be a hardware problem. I try Fidel's Gameplay evolution tool, and REAL PERFORMANCE OPTIMIZER V. 1.0 and 2.0 but the game is still lagging. I'm very hopeless, it seems nothing to solve my lagging problem, and I can't enjoy the game like this. I hope someone could help me. Many thanks mates!!!!
Obviously select the lowest settings to play. But past that, try Fidel's crowd remover mod. I don't know if it's the answer for everyone, but my slowdown issues have become noticably less since I installed that mod. Also, I'm convinced some part of the lag issue is cache-related. My game plays fine on the higher settings until I get near the end of the half, then it starts to lag. I've seen other games like that, where slowdown issues happen only after the game's been running for a while.
 

Etoiliste

Club Supporter
thutmozis;3131414 said:
Hello to everyone!

Please help me!!!!! My fifa 12 is lagging. I try to take various version (DVD5 and RASOR1911) but always the same= lagging. I have NVIDIA Geforce 250 video card with the latest firmwire, so it seems this part is all right. My computer is well enough so it won't be a hardware problem. I try Fidel's Gameplay evolution tool, and REAL PERFORMANCE OPTIMIZER V. 1.0 and 2.0 but the game is still lagging. I'm very hopeless, it seems nothing to solve my lagging problem, and I can't enjoy the game like this. I hope someone could help me. Many thanks mates!!!!

The lag issue is related to the CPU and not the GPU.
It worked fine for me (9800gt) with some lags when it's rainy or snowy.
Since i have installed PERF OP 1.0 (and not 2.0 because it affects chants in game) associated with D3DOverrider , not a single lag ;)
 

thutmozis

Club Supporter
bangus;3131424 said:
Obviously select the lowest settings to play. But past that, try Fidel's crowd remover mod. I don't know if it's the answer for everyone, but my slowdown issues have become noticably less since I installed that mod. Also, I'm convinced some part of the lag issue is cache-related. My game plays fine on the higher settings until I get near the end of the half, then it starts to lag. I've seen other games like that, where slowdown issues happen only after the game's been running for a while.

Thanks the fast reply dude! I'll try the crowd remover tomorrow, and I'll report the result. Once again thx a lot!!!!!(Y)
 

Fidel Gameplay

Senior Squad
miketheslummy;3131029 said:
@ Fidel :
I know you have to reply to a lot of people.... but i try again with one more question :)
Is GP EVO V.2 PERFECTLY Compatible with previous saved career mode ?

VteX;3131173 said:
Fidel: i've watched the videos and get me excited about youre gameplay evo 2.0 release real nice work.

i have the same question of miketheslummy above.

now pressure for the release mate i prefer perfect above hurry :P

keep the good work

yes, GP EVO V.2 and others future update PERFECTLY Compatible with previous saved career mode (this is one of the many benefits)....

IVINIVIN;3131252 said:
Thats great man, but can you do anything about some options that are missing from fifa 12 compared to Fifa 11 when advanced option is anabled.. such as number of yellow cards for suspension and the away goal rule are completely missing... :eek:
And, have you found out a way to avoid the automatic captain changing that I told you..??
I'm not urging you, just enquring bro...
All the best for your future tools....;)

..ok!! when i've free time check and try the way to disable the automatic captain changing...


Twice;3131263 said:
I installed performance optimzer and when i go to the game i cant enter to arena?
It gives me a black screen?
Anyone..

..performance optimzer 1 or 2? really strange problem! in any case if you're sure that the black screen is caused by my performance opt., delete platform.ini and regenerate, may be incompatible with your hardware configuration...

no slevin;3131327 said:
This will only work once for me, then after that the game just freezes on startup. I have to regenerate every time after closing out out of FIFA.

try to make rna.ini read only, or try to open my rna.ini and increases this values, try with 1: TITLE_SCREEN_TIME_BEFORE_PRESS_START = 1 // 0 is my value
....


@ everyone:
I've created the tool for edit career, but i'am not a god that knows all the values, and i repeat that also for editors requires time to understand.....but i suggest to check: fifaccitiu's excellent thread for career mode editing/study tips/values:
check here: http://www.soccergaming.com/forums/showthread.php?t=170856

I answer to all as soon as possible!!
thanks for all comment about GP EVO 1 and 2!!
bye bye
 

Fidel Gameplay

Senior Squad
Notice:
contributors/collaborators are required for this thread for make support to users, who is interested can contact me via PM!! thanks!
 

thutmozis

Club Supporter
Etoiliste;3131443 said:
The lag issue is related to the CPU and not the GPU.
It worked fine for me (9800gt) with some lags when it's rainy or snowy.
Since i have installed PERF OP 1.0 (and not 2.0 because it affects chants in game) associated with D3DOverrider , not a single lag ;)


I just tried your settings (perf op 1.0 and D3Doverrider) and the game now a bit better, but still has some lags. Anyway many many thx for you. I noticed, when the camera moving there are more laggs. Now I use tele broadcast and max zoom. ( little bit better ). (Y):33vff3o:
 

intenseblitz

Red Card - life - multiple accounts
Life Ban
How about

[CAREERMODE_MANAGERS]
CONCURRENTMATCH = 1
DEBUGSTATS = 1
FITNESS = 1
NEWS = 1
PLAYASPLAYER = 1
PLAYERGROWTH = 1
PLAYERREGEN = 1
PLAYERVALUE = 1
PLAYERWAGE = 1
SUSPENSION = 1
TEAMMOVE = 1
AWARDS = 1
TICKER = 1
DYNAMICTABLE = 1
TRANSFER = 1 Turning this to 0 will that stop transfers in career mode?
 

intenseblitz

Red Card - life - multiple accounts
Life Ban
Maybe this will work

// Probability (hence in the range [0%; 100%]) of relocating in another country/league
// Please note the indices are zero-based, with the following meaning:
// 0 = Top League; 1 = Medium League ; 2 = Lower League; 3 = Non-European League
RELOCATION_PROBABILITY_0_0 = 0
RELOCATION_PROBABILITY_0_1 = 0
RELOCATION_PROBABILITY_0_2 = 0
RELOCATION_PROBABILITY_0_3 = 0

RELOCATION_PROBABILITY_1_0 = 0
RELOCATION_PROBABILITY_1_1 = 0
RELOCATION_PROBABILITY_1_2 = 0
RELOCATION_PROBABILITY_1_3 = 0

RELOCATION_PROBABILITY_2_0 = 0
RELOCATION_PROBABILITY_2_1 = 0
RELOCATION_PROBABILITY_2_2 = 0
RELOCATION_PROBABILITY_2_3 = 0

RELOCATION_PROBABILITY_3_0 = 0
RELOCATION_PROBABILITY_3_1 = 0
RELOCATION_PROBABILITY_3_2 = 0
RELOCATION_PROBABILITY_3_3 = 0

// Now special cases for EFIGS-EFIGS transfers
RELOCATION_PROBABILITY_E_E = 0 // England to England
RELOCATION_PROBABILITY_E_F = 0 // England to France
RELOCATION_PROBABILITY_E_I = 0 // England to Italy
RELOCATION_PROBABILITY_E_G = 0 // England to Germany
RELOCATION_PROBABILITY_E_S = 0 // England to Spain

RELOCATION_PROBABILITY_F_E = 0 // France to England
RELOCATION_PROBABILITY_F_F = 0
RELOCATION_PROBABILITY_F_I = 0
RELOCATION_PROBABILITY_F_G = 0
RELOCATION_PROBABILITY_F_S = 0

RELOCATION_PROBABILITY_I_E = 0
RELOCATION_PROBABILITY_I_F = 0
RELOCATION_PROBABILITY_I_I = 0
RELOCATION_PROBABILITY_I_G = 0
RELOCATION_PROBABILITY_I_S = 0

RELOCATION_PROBABILITY_G_E = 0
RELOCATION_PROBABILITY_G_F = 0
RELOCATION_PROBABILITY_G_I = 0
RELOCATION_PROBABILITY_G_G = 0
RELOCATION_PROBABILITY_G_S = 0

RELOCATION_PROBABILITY_S_E = 0
RELOCATION_PROBABILITY_S_F = 0
RELOCATION_PROBABILITY_S_I = 0
RELOCATION_PROBABILITY_S_G = 0
RELOCATION_PROBABILITY_S_S = 0
 

Etoiliste

Club Supporter
thutmozis;3131463 said:
I just tried your settings (perf op 1.0 and D3Doverrider) and the game now a bit better, but still has some lags. Anyway many many thx for you. I noticed, when the camera moving there are more laggs. Now I use tele broadcast and max zoom. ( little bit better ). (Y):33vff3o:

I forgot to mention that i found that it will be better with the nvidia 260.xx driver.
 

intenseblitz

Red Card - life - multiple accounts
Life Ban
worked I believe I was not given any transfer offers and the transfer menu would not come up
showing any transfers on the right hand side if you another method to see transfers for thw world
please tell me


Code:
// Probability (hence in the range [0%; 100%]) of relocating in another country/league
// Please note the indices are zero-based, with the following meaning:
// 0 = Top League; 1 = Medium League ; 2 = Lower League; 3 = Non-European League
RELOCATION_PROBABILITY_0_0 = 0
RELOCATION_PROBABILITY_0_1 = 0
RELOCATION_PROBABILITY_0_2 = 0
RELOCATION_PROBABILITY_0_3 = 0

RELOCATION_PROBABILITY_1_0 = 0
RELOCATION_PROBABILITY_1_1 = 0
RELOCATION_PROBABILITY_1_2 = 0
RELOCATION_PROBABILITY_1_3 = 0

RELOCATION_PROBABILITY_2_0 = 0
RELOCATION_PROBABILITY_2_1 = 0
RELOCATION_PROBABILITY_2_2 = 0
RELOCATION_PROBABILITY_2_3 = 0

RELOCATION_PROBABILITY_3_0 = 0
RELOCATION_PROBABILITY_3_1 = 0
RELOCATION_PROBABILITY_3_2 = 0
RELOCATION_PROBABILITY_3_3 = 0

// Now special cases for EFIGS-EFIGS transfers
RELOCATION_PROBABILITY_E_E = 0 // England to England
RELOCATION_PROBABILITY_E_F = 0 // England to France
RELOCATION_PROBABILITY_E_I = 0 // England to Italy
RELOCATION_PROBABILITY_E_G = 0 // England to Germany
RELOCATION_PROBABILITY_E_S = 0 // England to Spain

RELOCATION_PROBABILITY_F_E = 0 // France to England
RELOCATION_PROBABILITY_F_F = 0
RELOCATION_PROBABILITY_F_I = 0
RELOCATION_PROBABILITY_F_G = 0
RELOCATION_PROBABILITY_F_S = 0

RELOCATION_PROBABILITY_I_E = 0
RELOCATION_PROBABILITY_I_F = 0
RELOCATION_PROBABILITY_I_I = 0
RELOCATION_PROBABILITY_I_G = 0
RELOCATION_PROBABILITY_I_S = 0

RELOCATION_PROBABILITY_G_E = 0
RELOCATION_PROBABILITY_G_F = 0
RELOCATION_PROBABILITY_G_I = 0
RELOCATION_PROBABILITY_G_G = 0
RELOCATION_PROBABILITY_G_S = 0

RELOCATION_PROBABILITY_S_E = 0
RELOCATION_PROBABILITY_S_F = 0
RELOCATION_PROBABILITY_S_I = 0
RELOCATION_PROBABILITY_S_G = 0
RELOCATION_PROBABILITY_S_S = 0
+


Code:
[CAREERMODE_MANAGERS]
CONCURRENTMATCH = 1
DEBUGSTATS = 1
FITNESS = 1
NEWS = 1
PLAYASPLAYER = 1
PLAYERGROWTH = 1
PLAYERREGEN = 1
PLAYERVALUE = 1
PLAYERWAGE = 1
SUSPENSION = 1
TEAMMOVE = 1
AWARDS = 1
TICKER = 1
DYNAMICTABLE = 1
TRANSFER = 0
 

pch034

Club Supporter
Career Mode Transfer frequency problem edit this line (FIFA 12\Game\dlc\dlc_FootballCompEng\dlc\FootballCompEng\data <- This Folder)

(Transfer.ini )

MIN_CPU_OFFER_VARIANCE_PERCENTAGE_FOR_STARTING11 =
MAX_CPU_OFFER_VARIANCE_PERCENTAGE_FOR_STARTING11 =

To minimize the transfer of star player.
The line transfer funds, and nine through the modification is to modify wage negotiations if the agreement makes usually rejected in the negotiation of wages.

Above the line minimum, the following line is the maximum, depending on what adjustments the maximum used to stop transfer of star player's....

-15 Gamers in South Korea the top, bottom, use the -5 or 3

'-' As a value to a Only star players during the transfer and the transfer is 3 to transfer up to 3-4 Only.

I'm sorry I can not speak English well'm a Korean
 

regularcat

Manager
Moderator
pch034;3131556 said:
Career Mode Transfer frequency problem edit this line

(Transfer.ini )

MIN_CPU_OFFER_VARIANCE_PERCENTAGE_FOR_STARTING11 =
MAX_CPU_OFFER_VARIANCE_PERCENTAGE_FOR_STARTING11 =

To minimize the transfer of star player.
The line transfer funds, and nine through the modification is to modify wage negotiations if the agreement makes usually rejected in the negotiation of wages.

Above the line minimum, the following line is the maximum, depending on what adjustments the maximum used to stop transfer of star player's....

-15 Gamers in South Korea the top, bottom, use the -5 or 3

'-' As a value to a Only star players during the transfer and the transfer is 3 to transfer up to 3-4 Only.

I'm sorry I can not speak English well'm a Korean

your english is good enough & thank you for posting because he would have never stopped asking.
 

intenseblitz

Red Card - life - multiple accounts
Life Ban
@pch034,

I am sorry I have no idea what you said but transfer = 0 works good :) I think. Never stop harassing/asking/commenting/probing till you get the answer:mrt1::mike::taz::bouncy: (Y)
and never be shook of these fake digital gangsta wankstas :)
 


Top