Jump to content

Script Check Addon Snippit


CharmedOne

Recommended Posts

Ok this works with avoiders script checker in the emerge script. This is another was I found to scan for scripts with his script checker thought id share. Note it only detects Mirc Colors such as 4red colors, 7 Orange & etc.

 

 
on *:text:*:#: {
  if ($nick isop $chan) { return } 
  if ($chr(3) isin $1-) { 
    { .echo @Script [4Script] - $nick is not webchat.(Text) on 10 $chan } | /window -m @script 
    window -nk0 @Script -1 -1 600 200
  }
}
raw WHISPER:*: {
  if ($nick isop $chan) { return } 
  if ($chr(3) isin $1-) { 
    { .echo @Script [4Script] - $nick is not webchat.(Text) on 10 $chan } | /window -m @script 
    window -nk0 @Script -1 -1 600 200
  }
}
on *:action:*:#: {
  if ($nick isop $chan) { return } 
  if ($chr(3) isin $1-) { 
    { .echo @Script [4Script] - $nick is not webchat.(Text) on 10 $chan } | /window -m @script 
    window -nk0 @Script -1 -1 600 200
  }
}
on *:notice:*:#: {
  if ($nick isop $chan) { return } 
  if ($chr(3) isin $1-) { 
    { .echo @Script [4Script] - $nick is not webchat.(Text) on 10 $chan } | /window -m @script 
    window -nk0 @Script -1 -1 600 200
  }
}

Edited by CharmedOne
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...