12-26-2008, 03:50 AM
Hi again.I begin with my questions.
1)My server when I open it says the ranks that have been done as long as the server is open.But I want it to do to remember the ranks of all the times the player has play for example.
When I type ''top'' I see 5 different scores and ranks on the same name.Here is my mani_admin(stats)
2Can I make the server when a player ''dominates'' and the quake sound appears to make it seen by the players as writing on the middle of the screen?
3)When I type ''@menu'' ing-game it says
''you are not authorized to do this admin''
Where I do the rcon_connection?
1)My server when I open it says the ranks that have been done as long as the server is open.But I want it to do to remember the ranks of all the times the player has play for example.
When I type ''top'' I see 5 different scores and ranks on the same name.Here is my mani_admin(stats)
Code:
// 1 = Enable stats module, 0 = disable stats module
mani_stats 1
// 0 = calculate once per map, 1 = calculate at end of each round (CSS Only)
mani_stats_mode 1
// Number of days since player last connected before they are removed from the
// stats list
mani_stats_drop_player_days 30
// This cvar is used to set the type of stats calculation to use for ranking
// players
// 0 = Rank by by pure kills
// 1 = Rank by by kill:death ratio
// 2 = Rank by kills minus deaths
// 3 = Rank by points (points delta = (victim_points/killer_points) * multiplier
mani_stats_calculate 1
// Number of kills required before a player is given a rank
// If you are using the Kill Death ratio you should set this quite high
mani_stats_kills_required 10
// Number of kills + deaths required before a victims points are affected by the
// attackers kills. This prevents new players from affecting regular players points
// until a certain amount of experience is gained from playing.
mani_stats_kills_before_points_removed 0
// Defines how long a 'top' display lasts for before it fades (5 - 30 seconds)
mani_stats_top_display_time 10
// Defines whether other players see your rank when you type 'rank'
// 1 = show rank to all players
// 0 = only show rank to player who typed 'rank'
mani_stats_show_rank_to_all 1
// Defines a message to show when a user types 'rank' and the stats are turned
// off (this can be blank)
// mani_stats_alternative_rank_message "www.mystats.com"
// Enables writing of ranks to a text file called mani_ranks.txt for export to a
// web page.
mani_stats_write_text_file 1
// Set in minutes how often you want the stats to recalculate. This should be
// used if you have long map times with no end of round.
// 0 = disables frequency calculating, > 0 = time in minutes between each stats
// rank calculation
mani_stats_calculate_frequency 0
// Set in minutes how often you want the stats to recalculate AND write to disk
// This should be used if you have long map times with no end of round.
// 0 = disabled, > 0 = time in minutes between each save and recalculation of
// ranks
mani_stats_write_frequency_to_disk 0
// Set to 1 if you want your ranks to be by steam id (default),
// Set to 0 if you are not using steam ids on your server (Lan mode)
mani_stats_by_steam_id 1
// 1 = Include any bot kills made in stats
// 0 = Killing a bot does not count to stats
mani_stats_include_bot_kills 0
// Stats points decay settings
// Number of days since last connect that points decay will start
mani_stats_decay_start 30
// Number of days that the decay will take place over once started
// Points will drop to 500 over this period of time. If the player rejoins
// their points will be restored to full value
mani_stats_decay_period 30
// When a player reconnects the stats module can restore a players
// points back to the full amount if decay has set in
// 0 = Do not restore full points, 1 = restore to full points
mani_stats_decay_restore_points_on_connect 1
// If set to 1 a victim will never lose points ala BF2
mani_stats_points_add_only 0
// Number of days before a player is made invisible from
// being ranked. Note that the player is not dropped, if
// they rejoin their rank will be restored.
mani_stats_ignore_ranks_after_x_days 21
3)When I type ''@menu'' ing-game it says
''you are not authorized to do this admin''
Where I do the rcon_connection?