highlight_plugin

This commit is contained in:
0xd3d0c3d 2022-07-22 16:14:13 -05:00
parent 8889f8aa3a
commit 110ce80d68

@ -113,7 +113,7 @@ class Plugin:
h3=self.__color(hex(c3)[2:])
h4=self.__color(hex(c4)[2:])
msg=f'{h1}<<< {h2}{ircnick} {h1}>>> {h3}!!! {h4}{message} {h3}!!! {h1}<<< {h2}{ircnick} {h1}>>> {terminate}'
if not GOT_PALETTE: msg+=f"{h1}{c1.zfill(2)},{h2}{c2.zfill(2)},{h3}{c.zfill(2)},{h4}{c4.zfill(2)}"
if not GOT_PALETTE: msg+=f"{h1}{str(c1).zfill(2)},{h2}{str(c2).zfill(2)},{h3}{str(c3).zfill(2)},{h4}{str(c4).zfill(2)}"
self.bot.privmsg(target,self.bot.emo(msg))
if dice:
c1+=1;c2+=1;c3+=1;c4+=1