L'ancien prez de la ligue ou je suis maintenant le prez est venu chez nous car nous habitions pas très loin l'un de l'autre et il m'a tout installer et je peux a peine me souvenir ce qu'il a fait mais voici quelques choses qui pourrait t'aider, car lorsque tu download le Xtrats Stats sur
www.fhlsim.com sur le forum ben ya genre un dossier ou que tu dois changer des infos et voici les miens
##############################################################
# XtraStats Commish Util for FHL
# v0.99.2.0
#
# (c) 1999, Wynn Fenwick [Original Creator], All rights reserved.
# (c) 2001, Frederic Hurtubise, All rights reserved.
#
# Email:
frederic@hurtubise.net# Website:
http://www.hurtubise.net/xtrastats#
# Rights of licence:
# - Re-distribution of this software is prohibited.
# - Requestors of the software should be forwarded to Frederic Hurtubise
# (frederic@hurtubise) directly.
# - Modification of this software without notification to Frederic Hurtubise
# (frederic@hurtubise) is prohibited.
# - Use of this software without credit to author on program output
# is prohibited.
#
# This doesn't mean you won't be able to modify the program. I just want
# to be notified. Maybe your ideas are good enough to be included in the
# next version!
###############################################################
package XtraStats::Config;
use strict;
# Sets the URL of the league, this is used to prepend the links that will be generated (put a / at the end)
$XtraStats::Config::LeagueURL =
'http://cf.geocities.com/lnhvligue/';
# Sets the prefix of your league, this is used to retrieve the league files. This is the prefix that is contained
# in the FHL HTML files. IF you get a file not found error, it's probably this or your InDirectory is not set up
# properly. THIS IS CASE SENSITIVE.
$XtraStats::Config::LeaguePrefix =
'NHLV3';
# Sets the name of your league, this will be put in the headers of the generated reports
$XtraStats::Config::LeagueName =
'Ligue Nationale de Vrai Hockey Virtuel';
# Sets the directory in which you will store the generated reports (\ at the end please)
# note that you need to double the \
# example: $XtraStats::Config::OutDirectory =
"c:\\Program Files\\Fantasy Hockey League\\TRANSFER\\";$XtraStats::Config::TransferDirectory =
"C:\\Program Files\\Fantasy Hockey League\\TRANSFER\\";
# Sets the number of teams in your league (NOT USED RIGHT NOW)
$XtraStats::Config::LeagueSize = 30;
# Set to 1 if you want to see what's going on while XtraStats runs, set to 0 if you don't want to (faster)
$XtraStats::Config::Verbose = 1;
# Set to 1 if you will run this as a CGI, set to 0 otherwise (most-often used)
$XtraStats::Config::WebMode = 0;
# Set to 1 if you want to go and leech league files (based on the LeagueURL variable), most likely, this
# will be used in combination with WebMode, set to 0 otherwise (most-often used)
$XtraStats::Config::LeechFiles = 0;
#############################
# ENFORCER STANDING FORMULA #
#############################
# Sets the enforcer point number for a fight win
$XtraStats::Config::EnforcerWin = 50;
# Sets the enforcer point number for a fight loss
$XtraStats::Config::EnforcerLoss = 20;
# Sets the enforcer point number for a fight tie
$XtraStats::Config::EnforcerTie = 40;
# Sets the enforcer point number for an ejection (set to 0 if you just want the fights to count)
$XtraStats::Config::EnforcerEjected = 30;
# Sets the enforcer point number for a penalty minute (set to 0 if you just want the fights to count)
$XtraStats::Config::EnforcerPIM = 1;
###################################
# NUMBER OF ELEMENTS IN STANDINGS #
###################################
# Sets the number of enforcers that will appear in the rankings
$XtraStats::Config::EnforcerMax = 50;
# Sets the number of suspensions that will appear in the rankings
$XtraStats::Config::SuspensionsMax = 50;
# Sets the number of injuries that will appear in the rankings
$XtraStats::Config::InjuriesMax = 50;
# Sets the number of players that will appear in the POTW rankings
$XtraStats::Config::POTWMax = 25;
# Sets the number of players that will appear in the POTW rankings
$XtraStats::Config::POTMMax = 25;
# Sets the number of players that will appear in the Norris race watch
$XtraStats::Config::NorrisMax = 25;
# Sets the number of players that will appear in the Vezina race watch
$XtraStats::Config::VezinaMax = 25;
# Sets the number of players that will appear in the Calder race watch
$XtraStats::Config::CalderMax = 25;
# Sets the number of players that will appear in the hits rankings
$XtraStats::Config::HitsMax = 25;
#########################
# AWARD RACES VARIABLES #
#########################
# Sets the minimum number of games a player needs to play in in order to count in Award
$XtraStats::Config::Award::MinGames = .35;
# Sets the % a defenceman gets as in increase on the Award rankings
$XtraStats::Config::Award::Dman = 1.25;
# Sets the factor by which +/- are multiplied in Award
$XtraStats::Config::Award::PlusMinus = .5;
# Sets the factor by which the formula is multiplied in Award
$XtraStats::Config::Award::Boost = 10;
# Sets the factor by which goals are multiplied in Award
$XtraStats::Config::Award::GoalBoost = .25;
# Sets the minimum win pct a goalie must have to be included in Award
$XtraStats::Config::Award::MinWinPct = .500;
# Sets the minimum save pct a goalie must have to be included in Award
$XtraStats::Config::Award::MinSvPct = .875;
# Sets the factor by which the goalie winning percentage is multiplied in Award (more games = less impact)
$XtraStats::Config::Award::WinPct = 15;
# Sets the factor by which the goalie save percentage is multiplied in Award (harder to keep high in more games)
$XtraStats::Config::Award::SvPct = 15;
# Sets the factor by which the goalie shutouts are multiplied in Award (more chances to get shutouts, so reduce number)
$XtraStats::Config::Award::Shutout = 1.25;
########################
# POTW RACES VARIABLES #
########################
# Sets the minimum number of games a player needs to play in in order to count in POTW
$XtraStats::Config::POTW::MinGames = .35;
# Sets the % a defenceman gets as in increase on the POTW rankings
$XtraStats::Config::POTW::Dman = 1.25;
# Sets the factor by which +/- are multiplied in POTW
$XtraStats::Config::POTW::PlusMinus = .5;
# Sets the factor by which the formula is multiplied in POTW
$XtraStats::Config::POTW::Boost = 10;
# Sets the factor by which goals are multiplied in POTW
$XtraStats::Config::POTW::GoalBoost = .25;
# Sets the minimum win pct a goalie must have to be included in POTW
$XtraStats::Config::POTW::MinWinPct = .750;
# Sets the minimum save pct a goalie must have to be included in POTW
$XtraStats::Config::POTW::MinSvPct = .900;
# Sets the factor by which the goalie winning percentage is multiplied in POTW
$XtraStats::Config::POTW::WinPct = 15;
# Sets the factor by which the goalie save percentage is multiplied in POTW
$XtraStats::Config::POTW::SvPct = 15;
# Sets the factor by which the goalie shutouts are multiplied in POTW
$XtraStats::Config::POTW::Shutout = 1.25;
########################
# POTM RACES VARIABLES #
########################
# Sets the minimum number of games a player needs to play in in order to count in POTM
$XtraStats::Config::POTM::MinGames = .35;
# Sets the % a defenceman gets as in increase on the POTM rankings
$XtraStats::Config::POTM::Dman = 1.25;
# Sets the factor by which +/- are multiplied in POTM
$XtraStats::Config::POTM::PlusMinus = .5;
# Sets the factor by which the formula is multiplied in POTM
$XtraStats::Config::POTM::Boost = 10;
# Sets the factor by which goals are multiplied in POTM
$XtraStats::Config::POTM::GoalBoost = .25;
# Sets the minimum win pct a goalie must have to be included in POTM
$XtraStats::Config::POTM::MinWinPct = .750;
# Sets the minimum save pct a goalie must have to be included in POTM
$XtraStats::Config::POTM::MinSvPct = .850;
# Sets the factor by which the goalie winning percentage is multiplied in POTM (more games = less impact)
$XtraStats::Config::POTM::WinPct = 10;
# Sets the factor by which the goalie save percentage is multiplied in POTM (harder to keep high in more games)
$XtraStats::Config::POTM::SvPct = 10;
# Sets the factor by which the goalie shutouts are multiplied in POTM (more chances to get shutouts, so reduce number)
$XtraStats::Config::POTM::Shutout = 1.25;
#####################
# SORTING VARIABLES #
#####################
# Sets the sort order for the players in XtraStats. Values can be one of:
# team, games, goals, assists, points, shots, pim, ice (ice time), spg (shots per game)
# mpg (minutes per game), pimpg (pim per game), pimratio (ice time per penalty minute),
# sp20 (shots per 20 minutes), pp20 (points per 20 mins), ppg (points per game),
# efficacity (points per 20 mins - points per game)
$XtraStats::Config::SortPlayers = 'team';
# Sets the sort order for the goalies in XtraStats. Values can be one of:
# team, games, shots, saves, ga (goals allowed), gpg (goals per game), spg (shots per game),
# svpct (save percentage), psv (perseverance), quality (quality start), busy (busy night),
# head (headstands)
$XtraStats::Config::SortGoalies = 'team';
# Set to 'long' for returning long team names, 'short' otherwise
# example: Montreal (long) or MTL (short)
$XtraStats::Config::TeamName = 'long';
# Set to 'full_name' for returning full player names, 'fdotlast' to return only his short name
# example: Eric Lindros (full_name) or E. Lindros (fdotlast)
$XtraStats::Config::PlayerName = 'full_name';
###################
# MISC. VARIABLES #
###################
# Sets the HTML header of the outputted files. Use this if you want to set the background, or add your
# league logo. Make sure you have at least a </HEAD> and a <BODY> tag in there. You can modify the <BODY>
# tag at your will.
$XtraStats::Config::HTMLHeader = qq|
</HEAD><BODY>
|;
# Sets the how many shots are needed so that a goalie is considered having a Busy Night
$XtraStats::Config::GoalieBusyNight = 35;
# Sets the minimum number of shots to count in quality games
$XtraStats::Config::GoalieMinimumShots = 10;
# Sets what is the average OV of the league. Used for team depth
$XtraStats::Config::AverageOV = 70;
# Sets which file is linked from the XtraStats page.
# Can either be LinkedRosters or LinkedScoring (or Rosters / Scoring if you chose to replace those files)
$XtraStats::Config::XtraStatsLink = 'LinkedRosters';
# Sets the file containing the players list from ESPN
$XtraStats::Config::ESPNFile = 'ESPN.html';
# Sets the files that will be generated by XtraStats
$XtraStats::Config::ErrorFile = 'error.html';
$XtraStats::Config::XtraStatsFile = 'xtrastats.html';
$XtraStats::Config::EnforcersFile = 'enforcers.html';
$XtraStats::Config::SuspensionsFile = 'suspensions.html';
$XtraStats::Config::RecordsFile = 'records.html';
$XtraStats::Config::InjuriesFile = 'injuries.html';
$XtraStats::Config::POTWFile = 'potw.html';
$XtraStats::Config::POTMFile = 'potm.html';
$XtraStats::Config::NorrisFile = 'norris.html';
$XtraStats::Config::VezinaFile = 'vezina.html';
$XtraStats::Config::CalderFile = 'calder.html';
$XtraStats::Config::HitsFile = 'hits.html';
# % of games a player has to play in order to be considered as "qualified" stats wise
$XtraStats::Config::UnqualifiedPercentage = .5;
# Set to 1 if you want to replace the FHL roster file with the Linked one, set to 0, another file will be created
# Be warned that if you re-run XtraStats again after setting this to 1, everything will be corrupted. You will need
# to re-generate the Rosters file from FHL first, then re-run XtraStats
$XtraStats::Config::ReplaceRosters = 0;
# Set to 1 if you want to replace the FHL scoring file with the Linked one, set to 0, another file will be created
# Be warned that if you re-run XtraStats again after setting this to 1, everything will be corrupted. You will need
# to re-generate the Scoring file from FHL first, then re-run XtraStats
$XtraStats::Config::ReplaceScoring = 0;
# Number of FHL days that are included in POTW
$XtraStats::Config::WeekLength = 7;
# Number of FHL days that are included in POTM
$XtraStats::Config::MonthLength = 30;
666;
Tout se qui est en bleu, c'est les choses que tu dois changer, mettre les choses de ta ligue et non celle de la mienne. Aussi juste comme sa, faut que le Xtrats Stats soit a la même place que tes output de ton FHL soit, car aussi non tu en peux pas faire marcher le Xtrats Stats.
En espérant que sa marche car c'est vraiment bien cette chose, sa fait les joueurs semaines et mois, sa fait aussi les trophé calder, norris et vezina selon des calcul!