Advertisement
CVSoft

unicorn vomit

Dec 28th, 2014
205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.18 KB | None | 0 0
  1. def unicornvomit(nick):
  2.     o = ''
  3.     colors = ['13', '4', '8', '9', '12']
  4.     for x in xrange(len(nick)):
  5.         o += '\x03'+colors[x % len(colors)]+nick[x]
  6.     return o+'\x01'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement