This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import xchat, re, random | |
import string | |
__module_name__ = "Noise" | |
__module_version__ = "1.0.0" | |
__module_description__ = "Generates random colored string of the length specified" | |
def RandomWord(Length): | |
charlist = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789!#$%&\'()*+,-./:;<=>?@[\]^_`{|}~" | |
word = "" |