public override void OnUserEntryMergeEvent(MisfitBot_MKII.UserEntry discordUser, MisfitBot_MKII.UserEntry twitchUser) { }
public BanEventArguments(BotChannel chan, UserEntry mod, UserEntry vic, int time, int dur, string cause, bool isTwitch) { bChan = chan; enforcingUser = mod; bannedUser = vic; timestamp = time; duration = dur; reason = cause; isDiscord = !isTwitch; }
public UnBanEventArguments(BotChannel chan, UserEntry mod, UserEntry vic, int time, bool isTwitch) { bChan = chan; enforcingUser = mod; bannedUser = vic; timestamp = time; isDiscord = !isTwitch; }
public BitEventArguments(BotChannel chan, UserEntry usr, int time, int bits, int total, string con, string chatmsg) { bChan = chan; user = usr; timestamp = time; bitsGiven = bits; bitsTotal = total; context = con; chatmessage = chatmsg; }