Looking at your other posts, if you used my VB.NET version you could modify this part in Core/BotCore.vb
And put in a Case Else statement and look for the !roll command etcCode:Select Case objMessages(i).Command Case "376" Config.LiveInformation.IRCConnected = True Case "PRIVMSG" If objMessages(i).Request.StartsWith(":DCC CHAT") Then Dim myDCCRequest As New DCCRequest(objMessages(i).Request) If myDCCRequest.IsValid Then CreateNewDCCConnection(myDCCRequest) End If End If End Select




Reply With Quote