mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Feb 2006
Posts: 307
N
Fjord artisan
OP Offline
Fjord artisan
N
Joined: Feb 2006
Posts: 307
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! } }

Joined: Feb 2005
Posts: 681
M
Fjord artisan
Offline
Fjord artisan
M
Joined: Feb 2005
Posts: 681
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