This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.


For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.

no warez script

Requests for complete scripts or modifications/fixes for scripts you didn't write. Response not guaranteed, and no thread bumping!
Post Reply
A
Angel
Voice
Posts: 13
Joined: Sat Jul 31, 2010 5:39 pm

no warez script

Post by Angel »

i need a tcl script fpr my eggdrop that kicks and bans user that do !list or ciao etc warez command

and another script w/c is the same but rather sends a msg to ther service bot and do the kicking and banning...

thanks a lot
A
Angel
Voice
Posts: 13
Joined: Sat Jul 31, 2010 5:39 pm

Post by Angel »

many views but noone helped :(
w
willyw
Revered One
Posts: 1203
Joined: Thu Jan 15, 2009 12:55 am

Post by willyw »

Angel wrote:many views but noone helped :(
Myself - - I don't understand what it is that you are asking for.
The same may be true for others.
Perhaps if you re-worded it....
A
Angel
Voice
Posts: 13
Joined: Sat Jul 31, 2010 5:39 pm

Post by Angel »

i mean a tcl script that the bot kicks and bans users who uses the warez cmd such as !list or ciao if the bot have @ status
User avatar
Anahel
Halfop
Posts: 48
Joined: Fri Jul 03, 2009 6:18 pm
Location: Dom!

Post by Anahel »

A
Angel
Voice
Posts: 13
Joined: Sat Jul 31, 2010 5:39 pm

Post by Angel »

yeah i did but i want it to kick and ban the user too
User avatar
tomekk
Master
Posts: 255
Joined: Fri Nov 28, 2008 11:35 am
Location: Oswiecim / Poland
Contact:

Post by tomekk »

download any other 'badword' script, add '!list' to the 'bad words' list and turn on bans for bad words
b
blake
Master
Posts: 201
Joined: Mon Feb 23, 2009 9:42 am
Contact:

Re: no warez script

Post by blake »

Angel wrote:i need a tcl script fpr my eggdrop that kicks and bans user that do !list or ciao etc warez command

and another script w/c is the same but rather sends a msg to ther service bot and do the kicking and banning...

thanks a lot
When you say service bot do you meen you want your eggdrop to set mode +b username then send a command to your service bot as in botserv to do the kick
b
blake
Master
Posts: 201
Joined: Mon Feb 23, 2009 9:42 am
Contact:

Post by blake »

Code: Select all

####################################################################
#                                                                  #
# Based on BadWord.tcl by TheGhost and/or Rajeh Alharithi          #
#                                                                  #
# Stripped out most of the original, for basic kick on 'bad' words #
#                                                                  #
#                                                                  #
#                                        Cobratek                  #
####################################################################

## The bad word list
bind pubm - "!list" badword
bind pub - "!list" badword
bind pubm - "@find" badword
bind pub - "@find" badword
bind pubm - "ciao" badword
bind pub - "ciao" badword

## Main script

proc badword {nick uhost hand chan rest} {
  global botnick bword
    if {([ matchattr $hand f ])} {
      	putserv "PRIVMSG $chan : $nick  >:-| "

        return 1
	} else { 
        putserv "MODE $chan +b $nick"
        putserv "PRIVMSG CHANSERV KICK $chan $nick : Freekin Warez kiddie"
        return 0
	}
}
putlog "!list kicker v0.1 loaded"
Just added an extra line to theghosts script add extra words to this part

Code: Select all

## The bad word list
bind pubm - "!list" badword
bind pub - "!list" badword
bind pubm - "@find" badword
bind pub - "@find" badword
bind pubm - "ciao" badword
bind pub - "ciao" badword
A
Angel
Voice
Posts: 13
Joined: Sat Jul 31, 2010 5:39 pm

Post by Angel »

thanks blake..working like a charm to get these italians outa my channel who used to use this warez cmds
Post Reply