viewing paste Unknown #48334 | Text

Posted on the
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
import hexchat
 
__module_name__ = ">greentext"
__module_version__ = "1.0.1.5"
__module_description__ = "adds 4chan style greentext to hexchat"
 
 
 
def greentext(word, word_eol, userdata):
    text = word_eol[0]
 
#   if text.find(">") > 0 :
#           text = word_eol[0].replace(">", "\00303>")
    text = "I'm a faggot"
    
    hexchat.command(" ".join(["msg", hexchat.get_info("channel"), text]))
    return hexchat.EAT_ALL
 
 
hexchat.hook_command("", greentext)
 
#and text.index(">") == 0
Viewed 949 times, submitted by Guest.