2005-06-14 17:27:44 +02:00
|
|
|
########
|
|
|
|
# Bygfoot constants file. a lot of fine-tuning stuff gets loaded
|
2005-05-06 18:35:19 +02:00
|
|
|
# from here. constants affecting the appearance of the game
|
|
|
|
# can be found in 'bygfoot_app'.
|
|
|
|
#########
|
|
|
|
|
2005-10-01 10:12:06 +02:00
|
|
|
# debug level
|
|
|
|
int_debug 0
|
2007-02-18 13:31:54 +01:00
|
|
|
|
|
|
|
# write debug messages to console debug_writer=1
|
|
|
|
# write debug messages to file debug_writer=2 (not implemented)
|
|
|
|
# write debug messages to file console+file debug_writer=2 (not implemented)
|
2007-02-18 11:18:54 +01:00
|
|
|
int_debug_writer 0
|
2005-10-01 10:12:06 +02:00
|
|
|
|
2005-09-14 23:16:22 +02:00
|
|
|
#### float constants get divided by 100000 and loaded as floats
|
|
|
|
#### so we write 50000 if we'd like to have 0.5
|
2005-03-03 13:46:48 +01:00
|
|
|
|
2005-07-17 13:55:33 +02:00
|
|
|
# commands for unix filesystem interaction
|
2005-07-18 20:09:38 +02:00
|
|
|
string_fs_compress_command_unix zip
|
|
|
|
string_fs_compress_switches_unix -q
|
|
|
|
string_fs_uncompress_command_unix unzip
|
|
|
|
string_fs_uncompress_switches_unix -qq -o
|
2005-07-17 13:55:33 +02:00
|
|
|
string_fs_copy_file_command_unix cp
|
2005-07-18 20:09:38 +02:00
|
|
|
string_fs_remove_file_command_unix rm
|
2005-09-08 18:37:10 +02:00
|
|
|
string_fs_save_suffix_unix .zip
|
2005-07-17 13:55:33 +02:00
|
|
|
|
|
|
|
# commands for win32 filesystem interaction
|
2005-09-14 23:16:22 +02:00
|
|
|
string_fs_compress_command_win32 zip
|
|
|
|
string_fs_compress_switches_win32 -q
|
|
|
|
string_fs_uncompress_command_win32 unzip
|
|
|
|
string_fs_uncompress_switches_win32 -qq -o
|
2005-07-17 13:55:33 +02:00
|
|
|
string_fs_copy_file_command_win32 copy
|
|
|
|
string_fs_remove_file_command_win32 erase
|
2005-09-14 23:16:22 +02:00
|
|
|
string_fs_save_suffix_win32 .zip
|
2005-04-04 12:36:04 +02:00
|
|
|
|
2005-03-03 13:46:48 +01:00
|
|
|
# number of seconds until messages disappear
|
|
|
|
int_game_gui_message_duration 5
|
2005-06-28 04:08:56 +02:00
|
|
|
# number of seconds to delay for delayed messages
|
|
|
|
int_game_gui_message_delay 3
|
2005-03-03 13:46:48 +01:00
|
|
|
|
2005-03-17 21:26:01 +01:00
|
|
|
# base values for stadium improvement: 500 seats and 5%
|
|
|
|
int_stadium_improvement_base_seats 500
|
2005-09-14 23:16:22 +02:00
|
|
|
float_stadium_improvement_base_safety 5000
|
2005-03-17 21:26:01 +01:00
|
|
|
|
|
|
|
# values at which maximum discount is reached
|
|
|
|
int_stadium_improvement_max_discount_seats 2000
|
2005-09-14 23:16:22 +02:00
|
|
|
float_stadium_improvement_max_discount_safety 20000
|
2005-03-17 21:26:01 +01:00
|
|
|
|
|
|
|
# maximum discount
|
2005-09-14 23:16:22 +02:00
|
|
|
float_stadium_improvement_max_discount 40000
|
2005-03-17 21:26:01 +01:00
|
|
|
|
|
|
|
# wage unit factor for 500 seats or 5% safety
|
2005-09-14 23:16:22 +02:00
|
|
|
float_stadium_improvement_wage_unit_factor_seats 2500000
|
|
|
|
float_stadium_improvement_wage_unit_factor_safety 1200000
|
2005-03-17 21:26:01 +01:00
|
|
|
|
|
|
|
# these determine how much the weekly seats and
|
|
|
|
# safety increase can deviate from the base values 500 and 5%
|
|
|
|
int_stadium_improvement_seats_variance 100
|
2005-09-14 23:16:22 +02:00
|
|
|
float_stadium_improvement_safety_variance 1000
|
2005-03-17 21:26:01 +01:00
|
|
|
|
2005-03-03 13:46:48 +01:00
|
|
|
# lower limit for player ages.
|
2005-09-14 23:16:22 +02:00
|
|
|
float_player_age_lower 1800000
|
2005-03-03 13:46:48 +01:00
|
|
|
# upper limit for player ages.
|
2005-09-14 23:16:22 +02:00
|
|
|
float_player_age_upper 3600000
|
|
|
|
# lower limit for player peak ages.
|
|
|
|
float_player_peak_age_lower 2900000
|
|
|
|
# upper limit for player peak ages.
|
|
|
|
float_player_peak_age_upper 3200000
|
|
|
|
# lower limit for player peak region.
|
|
|
|
float_player_peak_region_lower 150000
|
|
|
|
# upper limit for player peak region.
|
|
|
|
float_player_peak_region_upper 400000
|
2005-03-13 16:46:15 +01:00
|
|
|
# by how many years the peak age of goalies is
|
2005-09-14 23:16:22 +02:00
|
|
|
# greater.
|
|
|
|
float_player_peak_age_goalie_addition 200000
|
2005-03-13 16:46:15 +01:00
|
|
|
|
2005-03-08 10:30:12 +01:00
|
|
|
# limits for initial fitness (read it as 85%)
|
2005-09-14 23:16:22 +02:00
|
|
|
float_player_fitness_lower 85000
|
2005-03-03 13:46:48 +01:00
|
|
|
# limits for initial fitness.
|
2005-09-14 23:16:22 +02:00
|
|
|
float_player_fitness_upper 100000
|
2005-03-03 13:46:48 +01:00
|
|
|
|
|
|
|
# bounds for the contract time at player generation.
|
2005-09-14 23:16:22 +02:00
|
|
|
float_player_contract_lower 100000
|
|
|
|
float_player_contract_upper 400000
|
2005-03-03 13:46:48 +01:00
|
|
|
|
|
|
|
# bounds for the last skill update at player generation.
|
2005-09-14 23:16:22 +02:00
|
|
|
float_player_lsu_lower 200000
|
|
|
|
float_player_lsu_upper 1000000
|
2005-03-13 16:46:15 +01:00
|
|
|
|
2005-03-15 16:10:57 +01:00
|
|
|
# stadium safety bounds at generation
|
2005-09-14 23:16:22 +02:00
|
|
|
float_team_stadium_safety_lower 80000
|
|
|
|
float_team_stadium_safety_upper 100000
|
2005-03-15 16:10:57 +01:00
|
|
|
|
|
|
|
# ticket price; this determines together with
|
|
|
|
# the player wages the size of the stadium at
|
|
|
|
# generation
|
2005-06-20 14:46:57 +02:00
|
|
|
int_team_stadium_ticket_price 25
|
2005-03-15 16:10:57 +01:00
|
|
|
|
2005-03-16 21:48:25 +01:00
|
|
|
# factor for stadium size; this determines the income
|
|
|
|
# of the user teams
|
2005-09-14 23:16:22 +02:00
|
|
|
float_team_stadium_size_wage_factor 180000
|
2005-03-16 21:48:25 +01:00
|
|
|
|
|
|
|
# stadium safety deterioration values (per game)
|
2005-09-14 23:16:22 +02:00
|
|
|
float_game_stadium_safety_deterioration_lower 200
|
|
|
|
float_game_stadium_safety_deterioration_upper 500
|
2005-03-16 21:48:25 +01:00
|
|
|
|
|
|
|
# journey cost factor for national and international games
|
2005-09-14 23:16:22 +02:00
|
|
|
float_game_finance_journey_factor_national 30000
|
|
|
|
float_game_finance_journey_factor_international 60000
|
2005-03-16 21:48:25 +01:00
|
|
|
|
|
|
|
# how many spectators in a perfectly safe stadium
|
2005-09-14 23:16:22 +02:00
|
|
|
float_game_stadium_attendance_percentage_lower 70000
|
|
|
|
float_game_stadium_attendance_percentage_upper 110000
|
2005-03-16 21:48:25 +01:00
|
|
|
|
|
|
|
# percentage increasing factor in cup games
|
2005-09-14 23:16:22 +02:00
|
|
|
float_game_stadium_attendance_cup_national_factor 115000
|
|
|
|
float_game_stadium_attendance_cup_international_factor 125000
|
2005-03-16 21:48:25 +01:00
|
|
|
|
|
|
|
# how many rounds before the final there's full house
|
|
|
|
int_game_stadium_attendance_cup_rounds_full_house 3
|
|
|
|
|
|
|
|
# below which rank (in pct. of the number of teams in the league)
|
|
|
|
# there are more spectators
|
2005-09-14 23:16:22 +02:00
|
|
|
float_game_stadium_attendance_rank_percentage 25000
|
2005-03-16 21:48:25 +01:00
|
|
|
|
|
|
|
# factor for an opponent with high rank
|
2005-09-14 23:16:22 +02:00
|
|
|
float_game_stadium_attendance_rank_factor 110000
|
2005-03-16 21:48:25 +01:00
|
|
|
|
|
|
|
# exponent of the stadium safety (the bigger the greater
|
|
|
|
# the influence of the safety on the percentage)
|
2005-09-14 23:16:22 +02:00
|
|
|
float_game_stadium_attendance_safety_exponent 50000
|
2005-03-16 21:48:25 +01:00
|
|
|
|
|
|
|
# how many spectators there can be at most compared to
|
|
|
|
# the average stadium size in the league
|
2005-09-14 23:16:22 +02:00
|
|
|
float_game_stadium_attendance_average_exceed_factor 200000
|
2005-03-16 21:48:25 +01:00
|
|
|
|
2005-06-04 12:28:49 +02:00
|
|
|
# upper and lower percentages for attendance on neutral
|
|
|
|
# ground (compared to the average capacity of cup teams
|
|
|
|
# in international cups and average capacity of league 1
|
|
|
|
# teams in national cups)
|
2005-09-14 23:16:22 +02:00
|
|
|
float_game_stadium_attendance_neutral_lower 90000
|
|
|
|
float_game_stadium_attendance_neutral_upper 145000
|
2005-06-04 12:28:49 +02:00
|
|
|
|
2005-03-16 21:48:25 +01:00
|
|
|
# reduce (in percentage) of capacity for different
|
|
|
|
# stadium events
|
2005-09-14 23:16:22 +02:00
|
|
|
float_game_stadium_safety_reduce_breakdown_lower 3000
|
|
|
|
float_game_stadium_safety_reduce_breakdown_upper 6000
|
|
|
|
float_game_stadium_safety_reduce_riots_lower 5000
|
|
|
|
float_game_stadium_safety_reduce_riots_upper 10000
|
|
|
|
float_game_stadium_safety_reduce_fire_lower 10000
|
|
|
|
float_game_stadium_safety_reduce_fire_upper 15000
|
2005-03-16 21:48:25 +01:00
|
|
|
|
|
|
|
# factor we multiply the safety reduction with to obtain the
|
|
|
|
# capacity reduction; the bigger the higher the reduction
|
2005-09-14 23:16:22 +02:00
|
|
|
float_game_stadium_capacity_reduce_factor 150000
|
2005-03-15 16:10:57 +01:00
|
|
|
|
2005-07-02 13:06:43 +02:00
|
|
|
# position weights determining what kind of player
|
|
|
|
# gets picked in the live game for an event (depending
|
|
|
|
# on the area the live game is in
|
2005-09-14 23:16:22 +02:00
|
|
|
float_game_player_weight_attack_def 22500
|
|
|
|
float_game_player_weight_attack_mid 40000
|
|
|
|
float_game_player_weight_attack_fwd 120000
|
2005-07-02 13:06:43 +02:00
|
|
|
|
2005-09-14 23:16:22 +02:00
|
|
|
float_game_player_weight_midfield_def 50000
|
|
|
|
float_game_player_weight_midfield_mid 100000
|
|
|
|
float_game_player_weight_midfield_fwd 50000
|
2005-07-02 13:06:43 +02:00
|
|
|
|
2005-09-14 23:16:22 +02:00
|
|
|
float_game_player_weight_defend_def 100000
|
|
|
|
float_game_player_weight_defend_mid 50000
|
|
|
|
float_game_player_weight_defend_fwd 25000
|
2005-07-02 13:06:43 +02:00
|
|
|
|
2005-03-13 16:46:15 +01:00
|
|
|
# lsu addition for injured players who are older
|
|
|
|
# than their peak age
|
2005-09-14 23:16:22 +02:00
|
|
|
float_player_lsu_injured_old 150000
|
2005-03-13 16:46:15 +01:00
|
|
|
|
|
|
|
# percentage of league games a player has to participate
|
|
|
|
# in to have his lsu increased
|
2005-09-14 23:16:22 +02:00
|
|
|
float_player_lsu_games_percentage 30000
|
2005-03-13 16:46:15 +01:00
|
|
|
|
|
|
|
# probability that the lsu gets increased even
|
|
|
|
# if the player didn't participate in that many games
|
2005-09-14 23:16:22 +02:00
|
|
|
float_player_lsu_increase_prob 40000
|
2005-03-13 16:46:15 +01:00
|
|
|
|
|
|
|
# the lsu above which a skill update is considered
|
2005-09-14 23:16:22 +02:00
|
|
|
float_player_lsu_update_limit 1500000
|
2005-03-13 16:46:15 +01:00
|
|
|
|
|
|
|
# 1 - probability that the update occurs right away
|
2005-09-14 23:16:22 +02:00
|
|
|
float_player_lsu_update_base_prob 80000
|
2005-03-03 13:46:48 +01:00
|
|
|
|
|
|
|
# this determines the accuracy of the scout's
|
|
|
|
# talent estimate. the smaller the better.
|
2005-09-14 23:16:22 +02:00
|
|
|
float_player_etal_scout_factor 700000
|
2005-03-03 13:46:48 +01:00
|
|
|
|
|
|
|
# fitness limits below which fitness is shown
|
|
|
|
# in orange and red etc.
|
2005-09-14 23:16:22 +02:00
|
|
|
float_treeview_helper_limit_player_fitness_below1 85000
|
|
|
|
float_treeview_helper_limit_player_fitness_below2 70000
|
|
|
|
float_treeview_helper_limit_player_fitness_below3 60000
|
2005-03-03 13:46:48 +01:00
|
|
|
|
|
|
|
# contract limits below which contract time is shown
|
|
|
|
# in orange and red etc.
|
2005-09-14 23:16:22 +02:00
|
|
|
float_treeview_helper_limit_player_contract_below1 100000
|
|
|
|
float_treeview_helper_limit_player_contract_below2 70000
|
|
|
|
float_treeview_helper_limit_player_contract_below3 40000
|
2005-03-03 13:46:48 +01:00
|
|
|
|
2005-03-27 19:59:57 +02:00
|
|
|
# the factor that determines how much money the user has to pay
|
|
|
|
# if he fires a player
|
2005-09-14 23:16:22 +02:00
|
|
|
float_player_fire_wage_factor 1000000
|
2005-03-27 19:59:57 +02:00
|
|
|
|
2005-03-03 13:46:48 +01:00
|
|
|
# the integer that the cell data functions will interpret as an empty string.
|
2005-04-16 09:46:04 +02:00
|
|
|
int_treeview_helper_int_empty -5
|
2005-03-03 13:46:48 +01:00
|
|
|
|
2005-03-21 13:39:05 +01:00
|
|
|
# number of results shown in the next opponent
|
|
|
|
# info
|
|
|
|
int_treeview_latest_results 10
|
|
|
|
|
2005-03-27 19:59:57 +02:00
|
|
|
# number of matches shown in the preview
|
|
|
|
int_treeview_coming_matches 4
|
|
|
|
|
2005-03-25 11:54:54 +01:00
|
|
|
# number of |'s for an ideal 442 team in the opponent preview
|
2005-03-25 21:18:35 +01:00
|
|
|
int_treeview_max_pipes 50
|
2005-03-25 11:54:54 +01:00
|
|
|
|
2005-05-13 21:44:58 +02:00
|
|
|
# the bounds determining the player positions in a newly created
|
|
|
|
# team for players 13 to int_team_max_players.
|
|
|
|
# player 11 is always the second goalie.
|
2005-09-14 23:16:22 +02:00
|
|
|
float_player_pos_bound1 37550
|
|
|
|
float_player_pos_bound2 75100
|
2005-05-13 21:44:58 +02:00
|
|
|
|
2005-05-14 17:10:25 +02:00
|
|
|
# maximum number of players in a user team.
|
2005-06-21 15:33:16 +02:00
|
|
|
int_team_max_players 22
|
2005-05-14 19:50:54 +02:00
|
|
|
# number of players in cpu teams. should be
|
2005-05-14 17:10:25 +02:00
|
|
|
# less or equal int_team_max_players
|
2005-05-14 19:50:54 +02:00
|
|
|
int_team_cpu_players 20
|
2005-03-03 13:46:48 +01:00
|
|
|
|
|
|
|
# highest skill and talent a player can have.
|
2005-09-14 23:16:22 +02:00
|
|
|
float_player_max_skill 9900000
|
2005-03-03 13:46:48 +01:00
|
|
|
|
|
|
|
# determines initial money of the users
|
2005-05-16 15:54:51 +02:00
|
|
|
int_initial_money_lower 70
|
|
|
|
int_initial_money_upper 100
|
2005-03-03 13:46:48 +01:00
|
|
|
|
2005-04-29 21:48:02 +02:00
|
|
|
# how many teams and players there
|
|
|
|
# are in the league statistics
|
|
|
|
int_stat_teams_len 3
|
|
|
|
int_stat_players_len 5
|
|
|
|
|
|
|
|
# percentage of team matches a goalie has to participate
|
|
|
|
# in to get counted in the best goalies statistics
|
2005-09-14 23:16:22 +02:00
|
|
|
float_stat_goalie_percentage 40000
|
2005-04-29 21:48:02 +02:00
|
|
|
|
2005-04-24 12:17:20 +02:00
|
|
|
# below and above which percentages of ranks
|
|
|
|
# in the league table the user's success counter
|
|
|
|
# gets incremented or decremented
|
2005-09-14 23:16:22 +02:00
|
|
|
float_user_success_table_bound_upper 30000
|
|
|
|
float_user_success_table_bound_lower 70000
|
2005-04-24 12:17:20 +02:00
|
|
|
|
|
|
|
# how many points the user loses or gains (so that
|
|
|
|
# his success counter converges to 0) if the team
|
|
|
|
# rank is between the above bounds
|
|
|
|
int_user_success_mediocre_rank_change 2
|
|
|
|
|
|
|
|
# success points for reaching some cup rounds
|
|
|
|
int_user_success_international_winner 80
|
|
|
|
int_user_success_international_final 70
|
|
|
|
int_user_success_international_semis 60
|
|
|
|
int_user_success_international_quarter 40
|
|
|
|
int_user_success_national_winner 70
|
|
|
|
int_user_success_national_final 60
|
|
|
|
int_user_success_national_semis 50
|
|
|
|
int_user_success_national_quarter 30
|
|
|
|
|
2005-04-25 18:49:54 +02:00
|
|
|
# success points for promotion and relegation
|
|
|
|
int_user_success_promotion 60
|
2005-04-25 21:39:43 +02:00
|
|
|
int_user_success_relegation 60
|
2005-04-25 18:49:54 +02:00
|
|
|
|
|
|
|
# points above or below which there might be a job
|
|
|
|
# offer
|
2005-04-26 17:00:26 +02:00
|
|
|
int_user_success_offer_limit 400
|
2005-04-25 18:49:54 +02:00
|
|
|
|
|
|
|
# base probability that the counter is considered at all
|
2005-09-14 23:16:22 +02:00
|
|
|
float_user_success_counter_check 25000
|
2005-04-25 18:49:54 +02:00
|
|
|
|
|
|
|
# probability that user gets job offer or fired if he
|
|
|
|
# is below or above the limit
|
2005-09-14 23:16:22 +02:00
|
|
|
float_user_success_base_prob 50000
|
2005-04-25 18:49:54 +02:00
|
|
|
|
|
|
|
# factor determining the growth of the probability
|
2005-09-14 23:16:22 +02:00
|
|
|
float_user_success_prob_factor 540
|
2005-04-25 18:49:54 +02:00
|
|
|
|
2005-03-19 21:04:08 +01:00
|
|
|
# how often a user may overdraw his bank account
|
|
|
|
int_finance_overdraw_limit 3
|
|
|
|
# how many weeks until he's got to be positive
|
|
|
|
int_finance_overdraw_positive 6
|
|
|
|
|
2005-03-16 21:48:25 +01:00
|
|
|
# wage factors for scout and physio
|
|
|
|
# four apiece because of the different qualities
|
2005-09-14 23:16:22 +02:00
|
|
|
float_finance_scout_factor1 200000
|
|
|
|
float_finance_scout_factor2 150000
|
|
|
|
float_finance_scout_factor3 100000
|
|
|
|
float_finance_scout_factor4 50000
|
2005-03-16 21:48:25 +01:00
|
|
|
|
2005-09-14 23:16:22 +02:00
|
|
|
float_finance_physio_factor1 60000
|
|
|
|
float_finance_physio_factor2 50000
|
|
|
|
float_finance_physio_factor3 40000
|
|
|
|
float_finance_physio_factor4 30000
|
2005-03-16 21:48:25 +01:00
|
|
|
|
2005-07-08 11:26:00 +02:00
|
|
|
# wage factor for youth coach
|
2005-09-14 23:16:22 +02:00
|
|
|
float_finance_yc_factor1 350000
|
|
|
|
float_finance_yc_factor2 250000
|
|
|
|
float_finance_yc_factor3 180000
|
|
|
|
float_finance_yc_factor4 100000
|
2005-07-08 11:26:00 +02:00
|
|
|
|
2005-03-16 21:48:25 +01:00
|
|
|
# interest rate
|
2005-09-14 23:16:22 +02:00
|
|
|
float_finance_interest 2000
|
2005-03-16 21:48:25 +01:00
|
|
|
|
2005-03-17 21:26:01 +01:00
|
|
|
# weight of player values and stadium capacity
|
|
|
|
# for drawing credit and loan
|
2005-09-14 23:16:22 +02:00
|
|
|
float_finance_credit_player_value_weight 6000
|
|
|
|
float_finance_credit_stadium_weight 3000000
|
2005-03-16 21:48:25 +01:00
|
|
|
|
|
|
|
# influence of the stadium safety on the value of the stadium
|
2005-09-14 23:16:22 +02:00
|
|
|
float_finance_credit_stadium_safety_exponent 25000
|
2005-03-16 21:48:25 +01:00
|
|
|
|
|
|
|
# scaling factors for the drawing credit and loan
|
2005-09-14 23:16:22 +02:00
|
|
|
float_finance_credit_factor_drawing 30000
|
|
|
|
float_finance_credit_factor_loan 70000
|
2005-03-17 21:26:01 +01:00
|
|
|
|
|
|
|
# number of weeks to pay back a loan
|
|
|
|
int_finance_payback_weeks 15
|
2005-03-03 13:46:48 +01:00
|
|
|
|
|
|
|
# live game scale configuration
|
2005-09-14 23:16:22 +02:00
|
|
|
float_game_gui_live_game_scale_attack 30000
|
|
|
|
float_game_gui_live_game_scale_chance 45000
|
|
|
|
float_game_gui_live_game_scale_range 1000000
|
2005-03-03 13:46:48 +01:00
|
|
|
|
2005-05-19 10:31:47 +02:00
|
|
|
# live game speed (milliseconds
|
2005-08-29 10:31:00 +02:00
|
|
|
int_game_gui_live_game_speed_grad -87500
|
|
|
|
int_game_gui_live_game_speed_max 3500010
|
2005-05-19 10:31:47 +02:00
|
|
|
|
2005-08-21 21:58:51 +02:00
|
|
|
# factor changing the speed when penalties
|
2005-09-14 23:16:22 +02:00
|
|
|
float_game_gui_live_game_speed_penalties_factor 200000
|
2005-08-21 21:58:51 +02:00
|
|
|
|
2005-10-24 22:50:48 +02:00
|
|
|
# How much a player's talent can deviate from
|
|
|
|
# the average talent in his team.
|
2005-09-14 23:16:22 +02:00
|
|
|
float_player_average_talent_variance 7500
|
2005-03-03 13:46:48 +01:00
|
|
|
|
|
|
|
# these determine the value calculation of players.
|
|
|
|
# value is a function of skill and talent involving
|
|
|
|
# a power.
|
2005-09-14 23:16:22 +02:00
|
|
|
float_player_value_skill_weight 65000
|
|
|
|
float_player_value_power 350000
|
|
|
|
|
|
|
|
# linear function parameters influencing the value
|
|
|
|
# increase/reduction depending on the difference between
|
|
|
|
# age and peak age; the higher the values, the bigger
|
|
|
|
# the influence
|
|
|
|
float_player_value_younger_factor 2000
|
|
|
|
float_player_value_older_factor 2500
|
2005-03-03 13:46:48 +01:00
|
|
|
|
|
|
|
# these determine the wage calculation of players.
|
|
|
|
# wage depends on the value and a random factor near 1.
|
2005-09-14 23:16:22 +02:00
|
|
|
float_player_wage_value_factor 1000
|
|
|
|
float_player_wage_random_dev 15000
|
2005-03-03 13:46:48 +01:00
|
|
|
|
|
|
|
# constants determining the probabilities for
|
|
|
|
# the playing styles of cpu teams.
|
2005-09-14 23:16:22 +02:00
|
|
|
float_team_playing_style_prob1 10000
|
|
|
|
float_team_playing_style_prob2 25000
|
|
|
|
float_team_playing_style_prob3 75000
|
|
|
|
float_team_playing_style_prob4 90000
|
2005-03-03 13:46:48 +01:00
|
|
|
|
|
|
|
# constants determining the probabilities for
|
|
|
|
# the playing structures of cpu teams.
|
2005-09-14 23:16:22 +02:00
|
|
|
float_team_playing_structure_prob1 15000
|
|
|
|
float_team_playing_structure_prob2 50000
|
|
|
|
float_team_playing_structure_prob3 70000
|
|
|
|
float_team_playing_structure_prob4 85000
|
2005-03-03 13:46:48 +01:00
|
|
|
|
|
|
|
# kinda hard to explain.
|
|
|
|
# @see team_generate_players()
|
|
|
|
# @see player_generate()
|
2005-09-14 23:16:22 +02:00
|
|
|
float_team_skill_variance 7500
|
2005-03-03 13:46:48 +01:00
|
|
|
|
2005-04-15 15:55:59 +02:00
|
|
|
# maximum player skill changes in cpu teams at
|
|
|
|
# the beginning of a new season in percent
|
2005-09-14 23:16:22 +02:00
|
|
|
float_season_end_team_change_lower -4000
|
|
|
|
float_season_end_team_change_upper 4000
|
2005-04-15 15:55:59 +02:00
|
|
|
|
|
|
|
# additional percentage if a user was first league
|
|
|
|
# champion
|
2005-11-01 22:20:24 +01:00
|
|
|
float_season_end_user_champ_addition 2000
|
2005-04-15 15:55:59 +02:00
|
|
|
|
2006-05-25 21:54:01 +02:00
|
|
|
# additional percentage if a user was first league
|
|
|
|
# champion and the team is among the best ones
|
|
|
|
# (this means basically that we improve the top teams
|
|
|
|
# so that they can challange the user's team better)
|
|
|
|
float_season_end_user_champ_best_teams_addition 1500
|
|
|
|
|
|
|
|
# the table rank limit below which we count
|
|
|
|
# a team as a top team
|
|
|
|
int_season_end_user_champ_best_teams_limit 5
|
|
|
|
|
2006-12-10 15:43:16 +01:00
|
|
|
# how much the user's luck deteriorates if he
|
|
|
|
# becomes champion
|
2007-02-11 21:49:36 +01:00
|
|
|
float_season_end_user_champ_luck_factor 95000
|
2006-12-10 15:43:16 +01:00
|
|
|
|
|
|
|
# how much it regenerates if he's not champ
|
2007-02-11 21:49:36 +01:00
|
|
|
float_season_end_user_champ_luck_factor_regen 103000
|
2006-12-10 15:43:16 +01:00
|
|
|
|
|
|
|
# lower limit for the user's luck
|
|
|
|
float_luck_limit 50000
|
|
|
|
|
2006-05-25 21:54:01 +02:00
|
|
|
float_season_end_league_above_talent_factor 103000
|
|
|
|
|
2005-03-18 23:03:23 +01:00
|
|
|
# bounds for new teams when user's been fired
|
|
|
|
# counted in the tables relative to his team
|
|
|
|
int_team_new_bound_upper 10
|
|
|
|
int_team_new_bound_lower 20
|
|
|
|
|
2005-03-03 13:46:48 +01:00
|
|
|
# base probability that the ball gets from defending area
|
|
|
|
# to midfield area.
|
2005-09-14 23:16:22 +02:00
|
|
|
float_live_game_area_def_mid 50000
|
2005-03-03 13:46:48 +01:00
|
|
|
# influence of attack/defend values on the base probability; the lower
|
|
|
|
# the smaller the influence.
|
2005-09-14 23:16:22 +02:00
|
|
|
float_live_game_area_def_mid_team_exponent 100000
|
2005-03-03 13:46:48 +01:00
|
|
|
|
|
|
|
# base probability that the ball gets from midfield area
|
|
|
|
# to attack area or back to defend area.
|
2005-09-14 23:16:22 +02:00
|
|
|
float_live_game_area_mid_att 50000
|
|
|
|
float_live_game_area_mid_def 30000
|
2005-03-03 13:46:48 +01:00
|
|
|
# influence of attack/defend values on the base probability; the lower
|
|
|
|
# the smaller the influence.
|
2005-09-14 23:16:22 +02:00
|
|
|
float_live_game_area_mid_team_exponent 125000
|
2005-03-03 13:46:48 +01:00
|
|
|
|
|
|
|
# base probability that the ball gets from attacking area
|
|
|
|
# to midfield area.
|
2005-09-14 23:16:22 +02:00
|
|
|
float_live_game_area_att_mid 30000
|
2005-03-03 13:46:48 +01:00
|
|
|
# influence of attack/defend values on the base probability; the lower
|
|
|
|
# the smaller the influence.
|
2005-09-14 23:16:22 +02:00
|
|
|
float_live_game_area_att_mid_team_exponent 100000
|
2005-03-03 13:46:48 +01:00
|
|
|
|
|
|
|
# base probability of a general event (no foul, no injury, no goal etc.)
|
2005-09-14 23:16:22 +02:00
|
|
|
float_live_game_event_general 50000
|
2005-03-03 13:46:48 +01:00
|
|
|
|
|
|
|
# base probability for possession change.
|
2005-09-14 23:16:22 +02:00
|
|
|
float_live_game_possession_changes 20000
|
2005-03-03 13:46:48 +01:00
|
|
|
# influence of the team values on the possession change.
|
2005-09-14 23:16:22 +02:00
|
|
|
float_live_game_possession_team_exponent 400000
|
2005-03-03 13:46:48 +01:00
|
|
|
|
|
|
|
# base prob for a scoring chance if a team is attacking.
|
2005-09-14 23:16:22 +02:00
|
|
|
float_live_game_scoring_chance 30000
|
2005-03-03 13:46:48 +01:00
|
|
|
# team values influence on the scoring chance.
|
2005-09-14 23:16:22 +02:00
|
|
|
float_live_game_scoring_chance_team_exponent 125000
|
2005-03-03 13:46:48 +01:00
|
|
|
|
|
|
|
# probability that it's the player in possession who
|
|
|
|
# has the scoring chance.
|
2005-09-14 23:16:22 +02:00
|
|
|
float_live_game_player_in_poss_shoots 30000
|
2005-05-09 16:00:43 +02:00
|
|
|
|
|
|
|
# prob that the scoring chance is a header
|
2005-09-14 23:16:22 +02:00
|
|
|
float_live_game_scoring_chance_is_header 25000
|
2005-03-03 13:46:48 +01:00
|
|
|
|
2005-10-01 10:12:06 +02:00
|
|
|
# probability that a scoring chance is an own goal.
|
2005-10-03 20:08:26 +02:00
|
|
|
float_live_game_scoring_chance_is_own_goal 1000
|
2005-10-01 10:12:06 +02:00
|
|
|
|
2005-03-03 13:46:48 +01:00
|
|
|
# base probability to score with a scoring chance.
|
2005-10-03 20:08:26 +02:00
|
|
|
float_live_game_score_base_prob 30000
|
2005-03-03 13:46:48 +01:00
|
|
|
# base probability to score with a free kick.
|
2005-10-03 20:08:26 +02:00
|
|
|
float_live_game_score_free_kick 5000
|
2005-03-03 13:46:48 +01:00
|
|
|
# base probability to score with a penalty.
|
2005-09-14 23:16:22 +02:00
|
|
|
float_live_game_score_penalty 80000
|
2005-03-03 13:46:48 +01:00
|
|
|
# influence of the attacker/goalie skills on the probability to score.
|
2005-09-14 23:16:22 +02:00
|
|
|
float_live_game_score_duel_exponent 30000
|
2005-03-03 13:46:48 +01:00
|
|
|
# influence of the team attacking/defending values on the probability to score.
|
2005-09-14 23:16:22 +02:00
|
|
|
float_live_game_score_team_exponent 70000
|
2005-03-03 13:46:48 +01:00
|
|
|
|
|
|
|
# the smaller this number, the smaller the probability of
|
|
|
|
# many stopping minutes after 90 or 45 minutes.
|
2005-09-14 23:16:22 +02:00
|
|
|
float_live_game_break_base 60000
|
2005-03-03 13:46:48 +01:00
|
|
|
# the bigger this number, the faster the probability of
|
|
|
|
# yet another additional minute after the 45th minute decays.
|
2005-09-14 23:16:22 +02:00
|
|
|
float_live_game_45_break_exponent_factor 130000
|
2005-03-03 13:46:48 +01:00
|
|
|
# the bigger this number, the faster the probability of
|
|
|
|
# yet another additional minute after the 90th minute decays.
|
2005-09-14 23:16:22 +02:00
|
|
|
float_live_game_90_break_exponent_factor 70000
|
2005-03-03 13:46:48 +01:00
|
|
|
# the probability that the team that shot on the goal stays
|
|
|
|
# in possession after a post or cross-bar hit.
|
2005-09-14 23:16:22 +02:00
|
|
|
float_live_game_possession_after_post 30000
|
2005-03-03 13:46:48 +01:00
|
|
|
|
|
|
|
# probability that there is a passing event after a special event.
|
2005-09-14 23:16:22 +02:00
|
|
|
float_live_game_general_event_second_player 50000
|
2005-03-03 13:46:48 +01:00
|
|
|
|
|
|
|
# constants for stadium events.
|
2005-03-16 21:48:25 +01:00
|
|
|
# influence of the stadium safety on the stadium
|
|
|
|
# event probability
|
2005-09-14 23:16:22 +02:00
|
|
|
float_live_game_stadium_event_exponent 130
|
2005-03-16 21:48:25 +01:00
|
|
|
|
|
|
|
# probabilities of different events; should add
|
|
|
|
# up to 10000
|
2005-09-14 23:16:22 +02:00
|
|
|
float_live_game_stadium_event_breakdown 60000
|
|
|
|
float_live_game_stadium_event_riots 30000
|
|
|
|
float_live_game_stadium_event_fire 10000
|
2005-03-03 13:46:48 +01:00
|
|
|
|
|
|
|
# foul probabilities.
|
2005-09-14 23:16:22 +02:00
|
|
|
float_live_game_foul 11000
|
|
|
|
float_live_game_foul_red_injury 1500
|
|
|
|
float_live_game_foul_red 3800
|
|
|
|
float_live_game_foul_yellow 28000
|
2005-03-03 13:46:48 +01:00
|
|
|
|
2005-03-09 14:10:28 +01:00
|
|
|
# ban duration probabilities
|
|
|
|
# should add up to 1000
|
2005-09-14 23:16:22 +02:00
|
|
|
float_live_game_ban_1 70000
|
|
|
|
float_live_game_ban_2 15000
|
|
|
|
float_live_game_ban_3 10000
|
|
|
|
float_live_game_ban_4 3000
|
|
|
|
float_live_game_ban_5 2000
|
2005-03-09 14:10:28 +01:00
|
|
|
|
|
|
|
# probability that the foul player is from the
|
|
|
|
# team that has the ball
|
2005-09-14 23:16:22 +02:00
|
|
|
float_live_game_foul_by_possession 20000
|
2005-03-09 14:10:28 +01:00
|
|
|
|
2005-03-03 13:46:48 +01:00
|
|
|
# injury probabilities.
|
2005-09-14 23:16:22 +02:00
|
|
|
float_live_game_injury 1000
|
|
|
|
float_live_game_injury_goalie_factor 20000
|
|
|
|
float_live_game_injury_is_temp 75000
|
2005-03-03 13:46:48 +01:00
|
|
|
|
2005-03-09 14:10:28 +01:00
|
|
|
# probabilities for different injuries
|
|
|
|
# these should add up to 1000
|
2005-09-14 23:16:22 +02:00
|
|
|
float_player_injury_concussion 20000
|
|
|
|
float_player_injury_pulled_muscle 20000
|
|
|
|
float_player_injury_hamstring 15000
|
|
|
|
float_player_injury_groin 15000
|
|
|
|
float_player_injury_frac_ankle 10000
|
|
|
|
float_player_injury_rib 7500
|
|
|
|
float_player_injury_leg 4000
|
|
|
|
float_player_injury_brok_ankle 4000
|
|
|
|
float_player_injury_arm 2000
|
|
|
|
float_player_injury_shoulder 1500
|
|
|
|
float_player_injury_ligament 700
|
|
|
|
float_player_injury_career_stop 300
|
2005-03-09 14:10:28 +01:00
|
|
|
|
|
|
|
# duration of the injuries (mean and deviance)
|
2005-03-13 16:46:15 +01:00
|
|
|
int_player_injury_duration_concussion 2
|
|
|
|
int_player_injury_duration_dev_concussion 1
|
|
|
|
int_player_injury_duration_pulled_muscle 3
|
|
|
|
int_player_injury_duration_dev_pulled_muscle 1
|
|
|
|
int_player_injury_duration_hamstring 5
|
|
|
|
int_player_injury_duration_dev_hamstring 2
|
|
|
|
int_player_injury_duration_groin 5
|
|
|
|
int_player_injury_duration_dev_groin 2
|
|
|
|
int_player_injury_duration_frac_ankle 6
|
|
|
|
int_player_injury_duration_dev_frac_ankle 2
|
|
|
|
int_player_injury_duration_rib 8
|
|
|
|
int_player_injury_duration_dev_rib 4
|
|
|
|
int_player_injury_duration_leg 9
|
|
|
|
int_player_injury_duration_dev_leg 4
|
|
|
|
int_player_injury_duration_brok_ankle 11
|
|
|
|
int_player_injury_duration_dev_brok_ankle 5
|
|
|
|
int_player_injury_duration_arm 6
|
|
|
|
int_player_injury_duration_dev_arm 2
|
|
|
|
int_player_injury_duration_shoulder 10
|
|
|
|
int_player_injury_duration_dev_shoulder 5
|
|
|
|
int_player_injury_duration_ligament 22
|
|
|
|
int_player_injury_duration_dev_ligament 8
|
2005-03-09 14:10:28 +01:00
|
|
|
|
2005-03-14 18:47:27 +01:00
|
|
|
# probability of injury time decrease for
|
|
|
|
# best and good physios (values of average and bad are
|
|
|
|
# obtained by mirroring these
|
|
|
|
# the values should add up to 10000
|
2005-09-14 23:16:22 +02:00
|
|
|
float_player_injury_recovery_best0 10000
|
|
|
|
float_player_injury_recovery_best1 65000
|
|
|
|
float_player_injury_recovery_best2 25000
|
2005-03-14 18:47:27 +01:00
|
|
|
|
2005-09-14 23:16:22 +02:00
|
|
|
float_player_injury_recovery_good0 15000
|
|
|
|
float_player_injury_recovery_good1 65000
|
|
|
|
float_player_injury_recovery_good2 20000
|
2005-03-14 18:47:27 +01:00
|
|
|
|
|
|
|
# fitness bounds after the player is recovered
|
2005-09-14 23:16:22 +02:00
|
|
|
float_player_injury_recovery_fitness_lower 50000
|
|
|
|
float_player_injury_recovery_fitness_upper 70000
|
2005-03-14 18:47:27 +01:00
|
|
|
|
2005-03-10 21:59:39 +01:00
|
|
|
# fitness decrease when injury is temporary
|
2005-09-14 23:16:22 +02:00
|
|
|
float_live_game_temp_injury_fitness_decrease_lower 2000
|
|
|
|
float_live_game_temp_injury_fitness_decrease_upper 8000
|
2005-03-10 21:59:39 +01:00
|
|
|
|
2005-03-03 13:46:48 +01:00
|
|
|
# probability of a free kick after a foul.
|
2005-09-14 23:16:22 +02:00
|
|
|
float_live_game_free_kick_prob 15000
|
2005-03-03 13:46:48 +01:00
|
|
|
|
|
|
|
# probability of a penalty after a foul.
|
2005-09-14 23:16:22 +02:00
|
|
|
float_live_game_penalty_prob 5000
|
2005-03-03 13:46:48 +01:00
|
|
|
|
|
|
|
# influence in % of the game style towards more attack.
|
2005-09-14 23:16:22 +02:00
|
|
|
float_game_style_factor 7500
|
2005-03-03 13:46:48 +01:00
|
|
|
|
|
|
|
# influence of boost on player's skill.
|
2005-03-09 14:10:28 +01:00
|
|
|
# these should be between 0 and 1
|
2005-09-14 23:16:22 +02:00
|
|
|
float_player_boost_skill_effect 12500
|
2005-03-03 13:46:48 +01:00
|
|
|
# influence of boost on player's fitness decay.
|
2005-09-14 23:16:22 +02:00
|
|
|
float_player_boost_fitness_effect 80000
|
2005-03-03 13:46:48 +01:00
|
|
|
# influence of boost on injury probability.
|
2005-09-14 23:16:22 +02:00
|
|
|
float_player_boost_injury_effect 80000
|
2005-03-03 13:46:48 +01:00
|
|
|
# influence of boost on cards probability.
|
2005-09-14 23:16:22 +02:00
|
|
|
float_player_boost_card_effect 80000
|
2005-03-09 14:10:28 +01:00
|
|
|
|
|
|
|
# influence of team boost on probability that the team in possession
|
|
|
|
# of the ball fouls
|
2005-09-14 23:16:22 +02:00
|
|
|
float_team_boost_foul_by_possession_factor1 50000
|
|
|
|
float_team_boost_foul_by_possession_factor2 90000
|
2005-03-09 14:10:28 +01:00
|
|
|
|
|
|
|
# influence of boost on foul probability
|
2005-09-14 23:16:22 +02:00
|
|
|
float_team_boost_foul_factor 40000
|
2005-03-03 13:46:48 +01:00
|
|
|
|
2005-11-01 22:20:24 +01:00
|
|
|
# costs factor of boost per minute
|
|
|
|
float_boost_cost_factor 2000
|
|
|
|
|
2005-03-13 22:10:19 +01:00
|
|
|
# probability that be better goalie gets substituted
|
|
|
|
# when updating the cpu teams
|
2005-09-14 23:16:22 +02:00
|
|
|
float_team_replace_worse_goalie 80000
|
2005-03-13 22:10:19 +01:00
|
|
|
|
|
|
|
# prob that new players come into the cpu team
|
2005-09-14 23:16:22 +02:00
|
|
|
float_team_new_player_probability 5000
|
2005-03-13 22:10:19 +01:00
|
|
|
|
|
|
|
# upper and lower limits for the number of new players
|
|
|
|
int_team_new_players_lower 1
|
|
|
|
int_team_new_players_upper 2
|
|
|
|
|
|
|
|
# upper and lower limits for the number of subs
|
|
|
|
# in cpu teams
|
|
|
|
int_team_subs_lower 1
|
|
|
|
int_team_subs_upper 3
|
|
|
|
|
|
|
|
# prob that the team style gets changed
|
2005-09-14 23:16:22 +02:00
|
|
|
float_team_new_style 10000
|
2005-03-13 22:10:19 +01:00
|
|
|
|
|
|
|
# prob that the team structure gets changed
|
2005-09-14 23:16:22 +02:00
|
|
|
float_team_new_structure 20000
|
2005-03-13 22:10:19 +01:00
|
|
|
|
2005-03-03 13:46:48 +01:00
|
|
|
# the influence of the fitness on the current skill.
|
2005-09-14 23:16:22 +02:00
|
|
|
# this determines the player's contribution to the team
|
|
|
|
# during a game. the higher the value the bigger the influence.
|
|
|
|
float_player_fitness_exponent 25000
|
2005-03-13 16:46:15 +01:00
|
|
|
|
2005-09-14 23:16:22 +02:00
|
|
|
# skill update parameters for players not within
|
|
|
|
# their peak region
|
|
|
|
float_player_skill_update_younger_factor 250
|
|
|
|
float_player_skill_update_younger_add 250
|
|
|
|
float_player_skill_update_older_factor 300
|
|
|
|
float_player_skill_update_older_add 250
|
2005-03-03 13:46:48 +01:00
|
|
|
|
2005-09-14 23:16:22 +02:00
|
|
|
# how much the skill varies during peak region
|
|
|
|
float_player_skill_update_peak 1500
|
2005-03-03 13:46:48 +01:00
|
|
|
|
2005-03-09 15:02:49 +01:00
|
|
|
# these determine the players' fitness decrease during
|
2005-09-14 23:16:22 +02:00
|
|
|
# a match (depending on the peak age diff)
|
2005-12-21 17:02:49 +01:00
|
|
|
float_player_fitness_decrease_younger_factor 3
|
|
|
|
float_player_fitness_decrease_older_factor 7
|
2005-09-14 23:16:22 +02:00
|
|
|
# addition value is the same for both, as it coincides
|
|
|
|
# with the decrease in the peak region
|
2005-12-21 17:02:49 +01:00
|
|
|
float_player_fitness_decrease_add 12
|
2005-09-14 23:16:22 +02:00
|
|
|
|
|
|
|
# player fitness increase parameters
|
|
|
|
float_player_fitness_increase_younger_factor -850
|
|
|
|
float_player_fitness_increase_older_factor -1400
|
|
|
|
float_player_fitness_increase_add 15000
|
|
|
|
|
|
|
|
# sometimes it's more, sometimes it's less:
|
|
|
|
# variance in percent
|
|
|
|
float_player_fitness_increase_variance 25000
|
2005-03-13 16:46:15 +01:00
|
|
|
|
|
|
|
# goalies get affected less by the decrease
|
2005-09-14 23:16:22 +02:00
|
|
|
float_player_fitness_decrease_factor_goalie 50000
|
2005-03-09 15:02:49 +01:00
|
|
|
|
2005-03-03 13:46:48 +01:00
|
|
|
# bounds for the home advantage factor
|
2005-09-14 23:16:22 +02:00
|
|
|
float_game_home_advantage_lower 3000
|
|
|
|
float_game_home_advantage_upper 7000
|
2005-03-03 13:46:48 +01:00
|
|
|
|
2005-03-08 10:30:12 +01:00
|
|
|
# How the cskill of field players get weighted for the team values in
|
|
|
|
# a match
|
2005-09-14 23:16:22 +02:00
|
|
|
float_player_team_weight_defender_defense 100000
|
|
|
|
float_player_team_weight_defender_midfield 40000
|
|
|
|
float_player_team_weight_defender_attack 25000
|
|
|
|
float_player_team_weight_midfielder_defense 62500
|
|
|
|
float_player_team_weight_midfielder_midfield 100000
|
|
|
|
float_player_team_weight_midfielder_attack 62500
|
|
|
|
float_player_team_weight_forward_defense 20000
|
|
|
|
float_player_team_weight_forward_midfield 60000
|
|
|
|
float_player_team_weight_forward_attack 130000
|
2005-03-03 13:46:48 +01:00
|
|
|
|
2005-03-19 21:04:08 +01:00
|
|
|
# transfer list configuration
|
|
|
|
# maximal number of players on the list
|
|
|
|
int_transfer_max_players 20
|
|
|
|
|
|
|
|
# deadline in perc. of the longest league
|
|
|
|
# e.g if a league has 100 matchdays deadline would be after
|
|
|
|
# week 70
|
2005-09-14 23:16:22 +02:00
|
|
|
float_transfer_deadline_percentage 80000
|
2005-03-19 21:04:08 +01:00
|
|
|
# number of new players on the list each week
|
|
|
|
int_transfer_new_players_lower 0
|
2005-05-26 11:51:28 +02:00
|
|
|
int_transfer_new_players_upper 3
|
2005-03-19 21:04:08 +01:00
|
|
|
# how long they stay on the list
|
2005-05-26 11:51:28 +02:00
|
|
|
int_transfer_time_lower 4
|
|
|
|
int_transfer_time_upper 7
|
2005-03-19 21:04:08 +01:00
|
|
|
# percentage of players from international cup teams
|
2005-09-14 23:16:22 +02:00
|
|
|
float_transfer_cup_percentage 25000
|
2005-05-14 15:46:11 +02:00
|
|
|
# restrictions applying to very good players
|
|
|
|
float_transfer_good_player_skill_bound 9000
|
2005-09-14 23:16:22 +02:00
|
|
|
float_transfer_good_player_prob 50000
|
2005-03-19 21:04:08 +01:00
|
|
|
|
|
|
|
# scout deviance in percent of the players' values and wages
|
2005-03-20 21:49:55 +01:00
|
|
|
# these values are the deviance for the best scout; the others
|
2005-03-19 21:04:08 +01:00
|
|
|
# are obtained by multiplying it
|
2005-09-14 23:16:22 +02:00
|
|
|
float_transfer_scout_deviance_value 2000
|
|
|
|
float_transfer_scout_deviance_wage 3000
|
2005-03-20 21:49:55 +01:00
|
|
|
|
|
|
|
# probability for an offer when a user
|
|
|
|
# player's on the list
|
2005-09-14 23:16:22 +02:00
|
|
|
float_transfer_offer_prob_max 50000
|
2005-03-20 21:49:55 +01:00
|
|
|
# reduce factor (multiplied by the scout value)
|
2005-09-14 23:16:22 +02:00
|
|
|
float_transfer_offer_prob_reduce 10000
|
2005-03-20 21:49:55 +01:00
|
|
|
|
|
|
|
# deviance bounds of the fee from the value
|
|
|
|
# values for average and bad scout are mirrored
|
|
|
|
|
|
|
|
# best scout
|
2005-09-14 23:16:22 +02:00
|
|
|
float_transfer_offer_fee_best_lower -5000
|
|
|
|
float_transfer_offer_fee_best_upper 15000
|
2005-03-20 21:49:55 +01:00
|
|
|
# good scout
|
2005-09-14 23:16:22 +02:00
|
|
|
float_transfer_offer_fee_good_lower -8000
|
|
|
|
float_transfer_offer_fee_good_upper 12000
|
2005-03-20 21:49:55 +01:00
|
|
|
|
|
|
|
# bounds for contract time of a newly acquired player
|
|
|
|
int_transfer_contract_lower 1
|
|
|
|
int_transfer_contract_upper 4
|
2005-03-03 13:46:48 +01:00
|
|
|
|
2005-03-25 11:54:54 +01:00
|
|
|
# wage increase/decrease in percentage for players above
|
|
|
|
# or below their peak age for longer contracts than 1 year
|
2005-09-14 23:16:22 +02:00
|
|
|
float_contract_scale_factor 3000
|
2005-03-25 11:54:54 +01:00
|
|
|
|
2005-03-25 12:44:49 +01:00
|
|
|
# max. number of offers when a new contract is negotiated
|
|
|
|
int_contract_max_offers 3
|
2005-06-01 20:19:02 +02:00
|
|
|
|
|
|
|
# ratio we'd like to have between the number
|
|
|
|
# of first and last names in a player name list
|
|
|
|
# (ie. #first names /#last names)
|
2005-09-14 23:16:22 +02:00
|
|
|
float_name_first_last_ratio 50000
|
2005-06-01 20:19:02 +02:00
|
|
|
|
|
|
|
# maximum number of possibilities we want to have
|
|
|
|
# in a shortened name list (ie. #first * #last)
|
|
|
|
int_name_max_product 2000
|
|
|
|
|
|
|
|
# probability that a name is chosen from a random
|
|
|
|
# list instead of the specified one
|
2005-09-14 23:16:22 +02:00
|
|
|
float_name_random_list_prob 20000
|
2005-06-14 17:27:44 +02:00
|
|
|
|
2006-03-01 10:29:01 +01:00
|
|
|
string_language_names English Deutsch Français Spanish Nederlands Polski Svenska Danish Romanian Bulgarian Chinese
|
|
|
|
string_language_codes C de fr es nl pl sv da ro bg zh
|
|
|
|
string_language_symbols flag_england.png flag_germany.png flag_france.png flag_spain.png flag_netherlands.png flag_poland.png flag_sweden.png flag_dk.png flag_romania.png flag_bulgaria.png flag_china.png
|
|
|
|
string_language_defs country_england.xml country_germany.xml country_france.xml country_spain.xml country_netherlands.xml country_poland.xml country_sweden.xml NONE country_romania.xml country_bulgaria.xml NONE
|
2005-06-20 14:46:57 +02:00
|
|
|
|
|
|
|
# lower and upper limits of which percentage
|
|
|
|
# of the player wages a sponsor pays; the actual
|
|
|
|
# value depends on the team's success
|
2005-09-14 23:16:22 +02:00
|
|
|
float_sponsor_wage_percentage_lower 20000
|
|
|
|
float_sponsor_wage_percentage_upper 70000
|
2005-06-20 14:46:57 +02:00
|
|
|
|
|
|
|
# percentage difference between shorter and longer
|
|
|
|
# contracts. whether this counts positively or negatively
|
|
|
|
# depends on whether the success counter is positive or negative
|
2005-09-14 23:16:22 +02:00
|
|
|
float_sponsor_contract_length_factor 12000
|
2005-06-20 14:46:57 +02:00
|
|
|
|
|
|
|
# lower and upper limits for number of sponsor offers
|
|
|
|
int_sponsor_offers_lower 1
|
|
|
|
int_sponsor_offers_upper 5
|
|
|
|
|
|
|
|
# limits for weeks without sponsor
|
|
|
|
int_sponsor_without_weeks_lower 3
|
|
|
|
int_sponsor_without_weeks_upper 6
|
|
|
|
|
|
|
|
# probability that the current sponsor wants
|
|
|
|
# to continue engagement if the team is completely
|
|
|
|
# unsuccessful
|
2005-09-14 23:16:22 +02:00
|
|
|
float_sponsor_continue_prob 10000
|
2005-07-05 20:37:26 +02:00
|
|
|
|
|
|
|
# how many live game units we check backwards to avoid
|
|
|
|
# having the same commentary text too often
|
2005-09-14 23:16:22 +02:00
|
|
|
int_lg_commentary_check_backwards 15
|
2005-07-08 11:26:00 +02:00
|
|
|
|
|
|
|
# default percentage for youth academy
|
|
|
|
int_youth_academy_default_percentage 5
|
|
|
|
|
|
|
|
# upper and lower bounds for number of youths
|
|
|
|
# in the academy
|
|
|
|
int_youth_academy_youths_lower 1
|
|
|
|
int_youth_academy_youths_upper 2
|
|
|
|
|
|
|
|
# upper and lower values for the counter determining
|
|
|
|
# when a new youth appears (in weeks)
|
2005-09-14 23:16:22 +02:00
|
|
|
float_youth_academy_youth_counter_lower 1500000
|
|
|
|
float_youth_academy_youth_counter_upper 2500000
|
2005-07-08 11:26:00 +02:00
|
|
|
|
|
|
|
# upper and lower values for youth ages
|
2005-09-14 23:16:22 +02:00
|
|
|
float_youth_academy_age_lower 1550000
|
|
|
|
float_youth_academy_age_upper 1750000
|
2005-07-08 11:26:00 +02:00
|
|
|
|
2005-09-18 12:02:10 +02:00
|
|
|
# weight of the coach for the average talent
|
2005-07-08 11:26:00 +02:00
|
|
|
# between 0 and 1
|
2005-09-14 23:16:22 +02:00
|
|
|
float_youth_academy_coach_weight 25000
|
2005-07-08 11:26:00 +02:00
|
|
|
|
2005-09-18 12:02:10 +02:00
|
|
|
# upper and lower factor values for average talent
|
2005-07-08 11:26:00 +02:00
|
|
|
# (actual value depends on coach and percentage)
|
2005-09-18 12:02:10 +02:00
|
|
|
float_youth_academy_talent_factor_lower 67000
|
|
|
|
float_youth_academy_talent_factor_upper 105000
|
2005-07-08 11:26:00 +02:00
|
|
|
|
2005-09-18 12:02:10 +02:00
|
|
|
# youth talent variance (to have random
|
|
|
|
# talents, not always the same)
|
|
|
|
float_youth_academy_talent_variance 15000
|
2005-07-14 18:05:10 +02:00
|
|
|
|
|
|
|
# probabilities for the different positions
|
|
|
|
# cumulative listing, adding up to 1
|
2005-09-14 23:16:22 +02:00
|
|
|
float_youth_academy_pos_goalie 10000
|
|
|
|
float_youth_academy_pos_defender 35000
|
|
|
|
float_youth_academy_pos_midfielder 35000
|
|
|
|
float_youth_academy_pos_forward 20000
|
2005-07-14 18:05:10 +02:00
|
|
|
|
|
|
|
# by how much the probability of getting the position
|
|
|
|
# yearned for increases with a bad youth coach
|
2005-09-14 23:16:22 +02:00
|
|
|
float_youth_academy_coach_search_addition 12000
|
2005-07-08 11:26:00 +02:00
|
|
|
|
|
|
|
# maximum percentage the user can devote to the youth academy
|
|
|
|
int_youth_academy_max_percentage 25
|
|
|
|
|
|
|
|
# Last skill update addition when the user's average
|
2005-07-14 18:05:10 +02:00
|
|
|
# youth coach is BEST
|
2005-09-14 23:16:22 +02:00
|
|
|
float_youth_academy_lsu_addition_best 130000
|
2005-07-08 11:26:00 +02:00
|
|
|
|
|
|
|
# how much we substract from the above value when the
|
2005-07-14 18:05:10 +02:00
|
|
|
# coach is worse
|
2005-09-14 23:16:22 +02:00
|
|
|
float_youth_academy_lsu_penalty 20000
|
2005-07-08 11:26:00 +02:00
|
|
|
|
|
|
|
# how much the average youth coach and
|
|
|
|
# investment percentage weighs; the higher
|
|
|
|
# the slower the change of the value when
|
|
|
|
# the user changes the coach (e.g. BAD -> BEST)
|
|
|
|
# or the percentage (e.g. 5% -> 20%)
|
2005-09-14 23:16:22 +02:00
|
|
|
float_youth_academy_average_weight 170000
|
2005-07-08 11:26:00 +02:00
|
|
|
|
|
|
|
# new youth counter decrease if the average percentage
|
|
|
|
# is approx. 0
|
2005-09-14 23:16:22 +02:00
|
|
|
float_youth_academy_counter_decrease_min 100000
|
2005-07-08 11:26:00 +02:00
|
|
|
|
|
|
|
# additional lsu change if a youth plays a match
|
2005-09-14 23:16:22 +02:00
|
|
|
float_youth_lsu_addition_match 150000
|
2005-07-08 11:26:00 +02:00
|
|
|
|
|
|
|
# how many youths there may be at most in the YA
|
|
|
|
int_youth_academy_max_youths 10
|
2005-09-18 12:02:10 +02:00
|
|
|
|
|
|
|
# influence of various events on the streak
|
|
|
|
# probabililty
|
|
|
|
float_player_streak_add_startup 5000
|
|
|
|
float_player_streak_add_no_startup -3000
|
|
|
|
float_player_streak_add_sub_in 3000
|
|
|
|
float_player_streak_add_sub_out -2000
|
|
|
|
float_player_streak_add_goal 12000
|
|
|
|
float_player_streak_add_own_goal -15000
|
|
|
|
float_player_streak_add_assist 5000
|
|
|
|
float_player_streak_add_win 4000
|
|
|
|
float_player_streak_add_loss -4000
|
|
|
|
float_player_streak_add_goalie_save 2000
|
|
|
|
float_player_streak_add_goalie_goal -3000
|
|
|
|
float_player_streak_add_goalie_clean 6000
|
|
|
|
float_player_streak_add_injury -18000
|
|
|
|
float_player_streak_add_sendoff -12000
|
|
|
|
|
|
|
|
# influence of the streak on player values
|
|
|
|
# in percent
|
|
|
|
float_player_streak_influence_skill 7000
|
2005-12-21 17:02:49 +01:00
|
|
|
float_player_streak_influence_fitness_decrease -12000
|
|
|
|
float_player_streak_influence_fitness_increase 12000
|
2005-09-18 12:02:10 +02:00
|
|
|
|
|
|
|
# how many weeks there mustn't be an new streak
|
|
|
|
int_player_streak_count_lower 3
|
|
|
|
int_player_streak_count_upper 6
|
|
|
|
|
|
|
|
# parameters (linear function) that determine how
|
|
|
|
# fast the streak count decreases depending on the
|
|
|
|
# current streak prob
|
|
|
|
float_player_streak_count_decrease_factor 75000
|
|
|
|
float_player_streak_count_decrease_add 100000
|
|
|
|
|
|
|
|
# upper and lower bounds for streak lock length
|
|
|
|
# (ie. how many weeks a player may not go on a new
|
|
|
|
# streak)
|
|
|
|
int_player_streak_lock_length_lower 3
|
|
|
|
int_player_streak_lock_length_upper 6
|
|
|
|
|
|
|
|
# upper and lower bounds for streak length
|
|
|
|
float_player_streak_length_lower 150000
|
|
|
|
float_player_streak_length_upper 400000
|
|
|
|
|
|
|
|
# the two values determining the probability
|
|
|
|
# that a player goes on a streak
|
|
|
|
# maximum probabililty (when the player's streak_prob
|
|
|
|
# is 1 or -1)
|
|
|
|
float_player_streak_prob_max 40000
|
|
|
|
|
|
|
|
# probability at streak_prob=0 (this is >0 because
|
|
|
|
# the streak_prob is between -1 and 1, not 0 and 1)
|
|
|
|
float_player_streak_prob_zero 5000
|
2005-10-27 23:10:15 +02:00
|
|
|
|
|
|
|
# factors for the betting odds functions
|
|
|
|
float_bet_better_factor 2430
|
|
|
|
float_bet_worse_factor -1290
|
|
|
|
|
|
|
|
# this determines how much worse the odds
|
|
|
|
# are made because of betting commission
|
|
|
|
float_bet_commission_decrease 25000
|
|
|
|
|
|
|
|
# how small the odds may become
|
|
|
|
float_bet_lower_limit 5000
|
2005-10-28 11:11:33 +02:00
|
|
|
|
|
|
|
# how many wage units the user may wager at most
|
|
|
|
float_bet_wager_limit_factor 50000
|
|
|
|
|
|
|
|
# how much the user may wager at most
|
|
|
|
int_bet_wager_max 25000
|
2005-12-01 12:50:54 +01:00
|
|
|
|
|
|
|
# lower and upper bounds for the number
|
|
|
|
# of new job offers when the job exchange gets updated
|
2005-12-01 15:49:00 +01:00
|
|
|
int_job_new_offers_lower 4
|
|
|
|
int_job_new_offers_upper 8
|
2005-12-01 12:50:54 +01:00
|
|
|
|
|
|
|
# how often (in weeks) an update occurs
|
|
|
|
int_job_update_interval 5
|
|
|
|
|
|
|
|
# percentage of international offers
|
2005-12-01 15:49:00 +01:00
|
|
|
float_job_international_perc 70000
|
2005-12-01 12:50:54 +01:00
|
|
|
|
|
|
|
# number of success points per average skill
|
|
|
|
# difference unit (needed when finding out whether
|
|
|
|
# a user's application for a job is successful)
|
2005-12-01 15:49:00 +01:00
|
|
|
int_job_application_points_per_av_skill 20
|
2005-12-01 12:50:54 +01:00
|
|
|
|
|
|
|
# how many points a league layer difference is worth
|
|
|
|
int_job_application_points_per_layer 30
|
|
|
|
|
|
|
|
# how many points more are needed for an international
|
|
|
|
# application
|
2005-12-01 15:49:00 +01:00
|
|
|
int_job_application_points_international 200
|
2005-12-01 12:50:54 +01:00
|
|
|
|
|
|
|
# how many points a country rating difference is worth
|
|
|
|
int_job_application_points_per_rating 80
|