def printHardware(sock, currentLog): hardwareInfo = "tablet: Wacom Cintiq 22HD" message = "✖ HARDWARE ✖ " + hardwareInfo + "\r\n" sendMessage(sock, message) chatLog(currentLog, "roreoBOT", message, "PRIVMSG")
def banUser(sock, user): banMessage = ".ban " message = banMessage + user sendMessage(sock, message)
def printSoftware(sock, currentLog): softwareInfo = "drawing program: Paint Tool SAI ✖ stream client: OBS" message = "✖ SOFTWARE ✖ " + softwareInfo + "\r\n" sendMessage(sock, message) chatLog(currentLog, "roreoBOT", message, "PRIVMSG")
def printRequestInfo(sock, currentLog): requstsLink = "No Request Info Yet" message = "✖ REQUESTS ✖ " + requstsLink + "\r\n" sendMessage(sock, message) chatLog(currentLog, "roreoBOT", message, "PRIVMSG")
def printCommissionInfo(sock, currentLog): commissionLink = "http://alfalfadil.tumblr.com/post/147679795591/commission-info" message = "✖ COMMISSIONS ✖ " + commissionLink + "\r\n" sendMessage(sock, message) chatLog(currentLog, "roreoBOT", message, "PRIVMSG")
def printLinks(sock, currentLog): twitterLink = "https://twitter.com/alfalfadil" tumblrLink = "https://alfalfadil.tumblr.com" message = "✖ LINKS ✖ twitter @ " + twitterLink + " ✖ tumblr @ " + tumblrLink + "\r\n" sendMessage(sock, message) chatLog(currentLog, "roreoBOT", message, "PRIVMSG")
def timeoutUser(sock, user): timeoutMessage = ".timeout " message = timeoutMessage + user sendMessage(sock, message)