mIRC Homepage
Posted By: flup Hi all, - 11/03/03 05:18 PM
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.
Posted By: NightChillz Re: Hi all, - 11/03/03 06:16 PM
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
}
Posted By: Doqnach Re: Hi all, - 11/03/03 10:23 PM
look here: /help /haltdef

of F1 > search > /haltdef
Posted By: Othello Re: Hi all, - 12/03/03 12:56 AM
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.
Posted By: flup Re: Hi all, - 13/03/03 04:19 PM
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]
Posted By: NightChillz Re: Hi all, - 13/03/03 05:06 PM
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...
Posted By: flup Re: Hi all, - 14/03/03 03:34 PM
Hmmmz, help?
Posted By: nitestarzz Re: Hi all, - 14/03/03 06:54 PM
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
Posted By: flup Re: Hi all, - 14/03/03 09:37 PM
I tried to make it for: QUIT but didn't get it working frown
This on is working perfectly, thx!
Posted By: flup Re: Hi all, - 15/03/03 09:10 AM
^^ BUMP ^^
© mIRC Discussion Forums