Live Roulette v1 (#59)

* Enabling/disabling gamba games with dynamic settting lookup.

* Its roulette baby
This commit is contained in:
CrackmaticSoftware
2026-01-29 19:20:57 +01:00
committed by GitHub
parent 6209a76e94
commit ca2e2c7874
4 changed files with 1009 additions and 1 deletions

View File

@@ -502,6 +502,10 @@ public static class BuiltIn
public static string KasinoSlotsEnabled = "Kasino.Slots.Enabled";
[BuiltInSetting("Whether plinko is enabled", SettingValueType.Boolean, "true", BooleanRegex)]
public static string KasinoPlinkoEnabled = "Kasino.Plinko.Enabled";
[BuiltInSetting("Enable/disable roulette game", SettingValueType.Boolean, "true")]
public static string KasinoRouletteEnabled = "Kasino.Roulette.Enabled";
[BuiltInSetting("Roulette countdown duration in seconds", SettingValueType.Text, "120", WholeNumberRegex)]
public static string KasinoRouletteCountdownDuration = "Kasino.Roulette.CountdownDuration";
[BuiltInSetting("Whether Xeet posting is enabled", SettingValueType.Boolean, "true", BooleanRegex)]
public static string XeetEnabled = "Xeet.Enabled";
[BuiltInSetting("Connection string for bot's Redis", SettingValueType.Text)]