This repository has been archived on 2023-04-13. You can view files and clone it, but cannot push or open issues or pull requests.
CloudBot/plugins/util/ircformat.py

22 lines
517 B
Python
Raw Normal View History

2013-09-06 08:12:21 +02:00
def bb(format_string):
rep = {'[b]':'\x02',
'[White]':'\x030',
'[Black]':'\x031',
'[dBlue]':'\x032',
'[dGreen]':'\x033',
'[dRed]':'\x034',
'[Brown]':'\x035',
'[Purple]':'\x036',
'[Gold]':'\x037',
'Yellow':'\x038',
'[Green]':'\x039',
'[Cyan]':'\x0310',
'[lBlue]':'\x0311',
'[Blue]':'\x0312',
'[Pink]':'\x0313',
'[Gray]':'\x0314',
'[lGray]':'\x0315',}
for x in rep:
format_string = format_string.replace(x,rep[x])
return format_string