added localization as downloaded from the Master API interupted network communication no longer treated as unknown exception topstats prints the right message if no one qualifies angle adjustments move unflag to seperate command
54 lines
2.0 KiB
C#
54 lines
2.0 KiB
C#
using SharedLibraryCore;
|
|
using SharedLibraryCore.Interfaces;
|
|
using System.Collections.Generic;
|
|
|
|
namespace IW4MAdmin.Plugins.Stats.Config
|
|
{
|
|
class StatsConfiguration : IBaseConfiguration
|
|
{
|
|
public bool EnableAntiCheat { get; set; }
|
|
public List<StreakMessageConfiguration> KillstreakMessages { get; set; }
|
|
public List<StreakMessageConfiguration> DeathstreakMessages { get; set; }
|
|
public string Name() => "Stats";
|
|
public IBaseConfiguration Generate()
|
|
{
|
|
EnableAntiCheat = Utilities.PromptBool(Utilities.CurrentLocalization.LocalizationIndex["PLUGIN_STATS_SETUP_ENABLEAC"]);
|
|
KillstreakMessages = new List<StreakMessageConfiguration>()
|
|
{
|
|
new StreakMessageConfiguration(){
|
|
Count = -1,
|
|
Message = "Try not to kill yourself anymore"
|
|
},
|
|
new StreakMessageConfiguration() {
|
|
Count = 5,
|
|
Message = "Great job! You're on a ^55 killstreak!"
|
|
},
|
|
new StreakMessageConfiguration()
|
|
{
|
|
Count = 10,
|
|
Message = "Amazing! ^510 kills ^7without dying!"
|
|
},
|
|
new StreakMessageConfiguration(){
|
|
Count = 25,
|
|
Message = "You better call in that nuke, ^525 killstreak^7!"
|
|
}
|
|
};
|
|
|
|
DeathstreakMessages = new List<StreakMessageConfiguration>()
|
|
{
|
|
new StreakMessageConfiguration()
|
|
{
|
|
Count = 5,
|
|
Message = "Pick it up soldier, you've died ^55 times ^7in a row..."
|
|
},
|
|
new StreakMessageConfiguration(){
|
|
Count = 10,
|
|
Message = "Seriously? ^510 deaths ^7without getting a kill?"
|
|
},
|
|
};
|
|
|
|
return this;
|
|
}
|
|
}
|
|
}
|