mIRC Home    About    Download    Register    News    Help

Print Thread
N
nataliad
nataliad
N
hello!

why this script doesnt work?

thanks!

Code:
on 1:join:#:{ if ($nick isreg $chan) && ($nick !isignore) { .timermsg1 1 5 /msg $nick welcome to our channel! } }

M
mIRCManiac
mIRCManiac
M
Well I would get rid of that first IF .. everyone isreg when they join.

Code:
on !*:JOIN:#: {
  if ($nick isignore) return
  [color:red]$+(.timerWelcome.,$nick)[/color] 1 5 msg $nick welcome to our channel!
}


The only reason I could see for that not
working is if the user is in your ignore list.
...or if you hjave another JOIN event in
the same file.


~ Edit ~
Oh and maybe change that timer name so if
another user joins in 5 seconds it uses a
different timer instead of restarting msg1

Last edited by mIRCManiac; 16/03/06 01:27 PM.

Link Copied to Clipboard