mIRC Home    About    Download    Register    News    Help

Print Thread
#14973 11/03/03 05:18 PM
Joined: Mar 2003
Posts: 48
F
flup Offline OP
Ameglian cow
OP Offline
Ameglian cow
F
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.

#14974 11/03/03 06:16 PM
Joined: Dec 2002
Posts: 271
N
Fjord artisan
Offline
Fjord artisan
N
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
}

#14975 11/03/03 10:23 PM
Joined: Jan 2003
Posts: 1,063
D
Hoopy frood
Offline
Hoopy frood
D
Joined: Jan 2003
Posts: 1,063
look here: /help /haltdef

of F1 > search > /haltdef


If it ain't broken, don't fix it!
#14976 12/03/03 12:56 AM
Joined: Dec 2002
Posts: 417
O
Fjord artisan
Offline
Fjord artisan
O
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....
#14977 13/03/03 04:19 PM
Joined: Mar 2003
Posts: 48
F
flup Offline OP
Ameglian cow
OP Offline
Ameglian cow
F
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]

#14978 13/03/03 05:06 PM
Joined: Dec 2002
Posts: 271
N
Fjord artisan
Offline
Fjord artisan
N
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...

#14979 14/03/03 03:34 PM
Joined: Mar 2003
Posts: 48
F
flup Offline OP
Ameglian cow
OP Offline
Ameglian cow
F
Joined: Mar 2003
Posts: 48
Hmmmz, help?

#14980 14/03/03 06:54 PM
Joined: Mar 2003
Posts: 23
N
Ameglian cow
Offline
Ameglian cow
N
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


blushcoolcrazy frownlaughmadshockedsmile:tongue:wink
#14981 14/03/03 09:37 PM
Joined: Mar 2003
Posts: 48
F
flup Offline OP
Ameglian cow
OP Offline
Ameglian cow
F
Joined: Mar 2003
Posts: 48
I tried to make it for: QUIT but didn't get it working frown
This on is working perfectly, thx!

#14982 15/03/03 09:10 AM
Joined: Mar 2003
Posts: 48
F
flup Offline OP
Ameglian cow
OP Offline
Ameglian cow
F
Joined: Mar 2003
Posts: 48
^^ BUMP ^^


Link Copied to Clipboard