Added a basic Howl.gg stats command, implemented a setting for controlling the magic number to divide by and retroactively updating bet/profit amounts for unrealized gains on slot feaches

This commit is contained in:
barelyprofessional
2024-07-18 18:02:44 +10:00
parent e4c4b3b41f
commit 272317f828
3 changed files with 60 additions and 9 deletions

View File

@@ -320,6 +320,14 @@ public static class BuiltIn
Description = "Whether to enable Kick functionality (Pusher websocket mainly)",
Default = "true",
IsSecret = false
},
new BuiltInSettingsModel
{
Key = Keys.HowlggDivisionAmount,
Regex = @"\d+",
Description = "How much to divide the Howlgg bets/profit by to get the real value",
Default = "1650",
IsSecret = false
}
];
@@ -351,5 +359,6 @@ public static class BuiltIn
public static string JuiceAmount = "Juice.Amount";
public static string KiwiFarmsToken = "KiwiFarms.Token";
public static string KickEnabled = "Kick.Enabled";
public static string HowlggDivisionAmount = "Howlgg.DivisionAmount";
}
}