Added Gamba Sesh presence detection, cooldown on start to prevent responding to chat buffer, super basic commands, notifications, message forwarding from Kick, memory so that it doesn't answer messages already seen (too bad if you edit)

This commit is contained in:
barelyprofessional
2024-03-26 13:40:44 +08:00
parent dd0aaa954f
commit c0c8ba655f
2 changed files with 67 additions and 0 deletions

View File

@@ -20,5 +20,9 @@ public class Models
public int PusherReconnectTimeout { get; set; } = 30;
// Todo: Find a way to extract this from the browser as it's not valid forever
public string? XfTokenValue { get; set; }
// Because his shitty bot crashed and it's annoying not having notifications
public bool EnableGambaSeshDetect { get; set; } = true;
public int GambaSeshUserId { get; set; } = 168162;
public string KickIcon { get; set; } = "https://i.ibb.co/pzB1Jrq/kick.png";
}
}