Then I have extracted it, and modified main.h and tcl.c: http://eggwiki.org/Utf-8
Then I have compiled and installed it.
But when i try to use unicode:
it says something in wrong codepage (cp1251).set mes "дадада"
putquick "PRIVMSG $chan :\001ACTION $mes"
I have found a way to fix it, but i think it's just a hack, not a solution:
I tried to save my script.tcl file in UTF8 codepage. It didn't help..# it works
set mes "дадада"
set mes [encoding convertfrom cp1251 $mes]
putquick "PRIVMSG $chan :\001ACTION $mes"
I tried to set 'encoding system utf-8", but it didnt work neither