I'm would like to have the text on joins and part to be in my own language.
In my case that is dutch.
I did something like this:
on !*:JOIN:#: {
echo # 9 $timestamp * $nick Is4 # 9binnen gekomen.
}

That works.
Then i added this:
on !*:PART:#: {
echo # 8 $timestamp * $nick Heeft4 # 8verlaten.
}
Somehow the original text: <nick> has left <room> is also theretogether whit the line I added.
At last I added this:
ON !*:NICK: {
echo # 15 $timestamp $nick Heet Nu $newnick
}
This somehow only shows up on the status screen and the original text <nick> is now known as <newnick> is stil on the channel.
Howcome the first (join text) is working but the others don't.
I thought if the first is working the others should work on the same way.
I guess this shows how new I am .... crazy
I learn something new every day.
Will somebody learn me this ??