コード例 #1
0
ファイル: Functions.py プロジェクト: shaylynrupard/roreoBOT
def printHardware(sock, currentLog):
    hardwareInfo = "tablet: Wacom Cintiq 22HD"
    message = "✖ HARDWARE ✖ " + hardwareInfo + "\r\n"
    sendMessage(sock, message)
    chatLog(currentLog, "roreoBOT", message, "PRIVMSG")
コード例 #2
0
ファイル: Functions.py プロジェクト: shaylynrupard/roreoBOT
def banUser(sock, user):
    banMessage = ".ban "
    message = banMessage + user
    sendMessage(sock, message)
コード例 #3
0
ファイル: Functions.py プロジェクト: shaylynrupard/roreoBOT
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")
コード例 #4
0
ファイル: Functions.py プロジェクト: shaylynrupard/roreoBOT
def printRequestInfo(sock, currentLog):
    requstsLink = "No Request Info Yet"
    message = "✖ REQUESTS ✖ " + requstsLink + "\r\n"
    sendMessage(sock, message)
    chatLog(currentLog, "roreoBOT", message, "PRIVMSG")
コード例 #5
0
ファイル: Functions.py プロジェクト: shaylynrupard/roreoBOT
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")
コード例 #6
0
ファイル: Functions.py プロジェクト: shaylynrupard/roreoBOT
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")
コード例 #7
0
ファイル: Functions.py プロジェクト: shaylynrupard/roreoBOT
def timeoutUser(sock, user):
    timeoutMessage = ".timeout "
    message = timeoutMessage + user
    sendMessage(sock, message)