mIRC Home    About    Download    Register    News    Help

Print Thread
#125974 23/07/05 08:43 PM
Joined: Apr 2005
Posts: 38
J
juble Offline OP
Ameglian cow
OP Offline
Ameglian cow
J
Joined: Apr 2005
Posts: 38
hi fellows
is it possible to loggin someone who is in my notify list
because most of the day i am out .I want to now when
is join to a server and the time.
Someone probible to say just do /ns info him ..no i cant because
it doesnt have registered nickname
The only thing i can do is from my notify list and when he joins
in a server with some way to loggin the time that has join

#125975 23/07/05 09:04 PM
Joined: Dec 2002
Posts: 1,245
M
Hoopy frood
Offline
Hoopy frood
M
Joined: Dec 2002
Posts: 1,245
on *:notify:{
if (!$file(notify.log)) { write -c notify.log }
write Join $time $nick $wildsite
}
on *:unotify:{
if (!$file(notify.log)) { write -c notify.log }
write Part $time $nick $wildsite
}
alias onotify { run notepad notify.log }
alias cnotify { wite -c notify.log }

I didn't test that but I think that should work

#125976 23/07/05 10:13 PM
Joined: Apr 2005
Posts: 38
J
juble Offline OP
Ameglian cow
OP Offline
Ameglian cow
J
Joined: Apr 2005
Posts: 38
thanks Mikechat
is working ..but i dont understand what is the meening of this:
alias onotify { run notepad notify.log }
its create this file but is empty (what for is that?)

thanks again

#125977 23/07/05 11:03 PM
Joined: Dec 2002
Posts: 1,245
M
Hoopy frood
Offline
Hoopy frood
M
Joined: Dec 2002
Posts: 1,245
alias onotify { run notepad notify.log }
open notepad with that file in it

alias cnotify { wite -c notify.log }
typo wite should be write, and that clears the log


Link Copied to Clipboard