|
|
Joined: Mar 2003
Posts: 48
Ameglian cow
|
OP
Ameglian cow
Joined: Mar 2003
Posts: 48 |
How can I delete those lines of:
** $nick joined $chan ** $1- sets mode +0 $opnick [or something]
Because i want to replace them with my own.
|
|
|
|
Joined: Dec 2002
Posts: 271
Fjord artisan
|
Fjord artisan
Joined: Dec 2002
Posts: 271 |
to make your own, your gonna have to set default events to those you want to change, example:
on ^*:join:*:{ echo 3 -a * $nick Has Joined $chan On $asctime .halt } on ^*:mode:*:{ echo 12 -a *** $nick Sets Mode In $chan To: $1- .halt }
|
|
|
|
Joined: Jan 2003
Posts: 1,063
Hoopy frood
|
Hoopy frood
Joined: Jan 2003
Posts: 1,063 |
look here: /help /haltdef
of F1 > search > /haltdef
If it ain't broken, don't fix it!
|
|
|
|
Joined: Dec 2002
Posts: 417
Fjord artisan
|
Fjord artisan
Joined: Dec 2002
Posts: 417 |
Go into your mirc options\IRC On the right hand part of the screen uncheck all boxes that aer checked to show in active then Click on events and set the selected events on hide or status screen.
Intelligence: It's better to ask a stupid question, then to prove it by not asking....
|
|
|
|
Joined: Mar 2003
Posts: 48
Ameglian cow
|
OP
Ameglian cow
Joined: Mar 2003
Posts: 48 |
Ok done, and working, but one problem.
If I use: /msg $chan $nick changed nick into $newnick
Iand $nick is in #1 and #2 It only shows in 1 of them [mostly the active]
|
|
|
|
Joined: Dec 2002
Posts: 271
Fjord artisan
|
Fjord artisan
Joined: Dec 2002
Posts: 271 |
it will message the channel that the event occured on, to achieve any different, you would have to loop through the common channels the two of you are on...
|
|
|
|
Joined: Mar 2003
Posts: 48
Ameglian cow
|
OP
Ameglian cow
Joined: Mar 2003
Posts: 48 |
|
|
|
|
Joined: Mar 2003
Posts: 23
Ameglian cow
|
Ameglian cow
Joined: Mar 2003
Posts: 23 |
on ^*:nick: { var %samechan = 1 while (%samechan <= $comchan($newnick,0)) { echo $comchan($newnick,%samechan) $nick is now known as $newnick inc %samechan } haltdef }
this should works
|
|
|
|
Joined: Mar 2003
Posts: 48
Ameglian cow
|
OP
Ameglian cow
Joined: Mar 2003
Posts: 48 |
I tried to make it for: QUIT but didn't get it working  This on is working perfectly, thx!
|
|
|
|
Joined: Mar 2003
Posts: 48
Ameglian cow
|
OP
Ameglian cow
Joined: Mar 2003
Posts: 48 |
|
|
|
|
|
|