16 lines
No EOL
483 B
C#
16 lines
No EOL
483 B
C#
using System;
|
|
|
|
namespace WingsEmu.Game.Configurations.Miniland;
|
|
|
|
public class AntiExploitConfiguration
|
|
{
|
|
public double MinigameAbuseDetectionThreshold { get; set; } = 0.5;
|
|
|
|
public TimeSpan CommonTimeExpendedInMinigamesPerDay { get; set; } = TimeSpan.FromHours(2);
|
|
|
|
public double PercentageForSameScoreCheck { get; set; } = 0.5;
|
|
|
|
public int UseSameScoreCheckAtXMinigames { get; set; } = 10;
|
|
|
|
public bool GiveRewardsToPossibleFalsePositives { get; set; } = false;
|
|
} |