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.

!unban

Requests for complete scripts or modifications/fixes for scripts you didn't write. Response not guaranteed, and no thread bumping!
Post Reply
G
GiOrGoS
Voice
Posts: 5
Joined: Sun Mar 22, 2009 8:05 pm

!unban

Post by GiOrGoS »

Hello i would like to ask for some help.
i have a tcl that with a public command adds a ban to the bots internal banlist.
i want my +B flag users to be able with an !unban command to remove it from internal banlist and from the channel i specify in the !unban syntax.
can anyone help me?
K
Kein
Voice
Posts: 21
Joined: Wed Apr 09, 2008 9:57 pm

Post by Kein »

Are you looking for complete script or for help to write your own?
I just don't get it >_>
I'm too lazy for all of this
G
GiOrGoS
Voice
Posts: 5
Joined: Sun Mar 22, 2009 8:05 pm

!unban

Post by GiOrGoS »

a full script.i have been using eggdrops for years but i cannot seem to be able to write my own tcls
K
Kein
Voice
Posts: 21
Joined: Wed Apr 09, 2008 9:57 pm

Post by Kein »

Well.. you can use any "public bot commands" script, just modify bind (flags) for unban.
I'm too lazy for all of this
G
GiOrGoS
Voice
Posts: 5
Joined: Sun Mar 22, 2009 8:05 pm

!unban

Post by GiOrGoS »

i tried to but they dont remove bans from internal banlist!
K
Kein
Voice
Posts: 21
Joined: Wed Apr 09, 2008 9:57 pm

Post by Kein »

Hmm... you can try to use CCS by Buster but it doesn't have complete english translation yet.
I'm too lazy for all of this
s
smash
Halfop
Posts: 45
Joined: Mon Jul 31, 2006 12:33 pm

Post by smash »

Kein wrote:Hmm... you can try to use CCS by Buster but it doesn't have complete english translation yet.
This project currently has no downloads.
quakenet #fraguk www.fraguk.com
hosting 113 scripts @ this time!
K
Kein
Voice
Posts: 21
Joined: Wed Apr 09, 2008 9:57 pm

Post by Kein »

Use TortoiseSVN to get latest revision or download v1.7.4 from here.
I'm too lazy for all of this
G
GiOrGoS
Voice
Posts: 5
Joined: Sun Mar 22, 2009 8:05 pm

!unban

Post by GiOrGoS »

wow it is a bit big but will help.
if someone else has a smaller script please paste!
User avatar
iamdeath
Master
Posts: 323
Joined: Fri Feb 11, 2005 2:32 pm
Location: *HeLL*
Contact:

Post by iamdeath »

Code: Select all

set unbans "!"
bind pub B|B ${unbans}unban unban

proc unban {nick host hand chan text} {
set target [lindex $text 0]
putserv "MODE $chan -b $target"
killchanban $chan $target
}
This will remove internal and channel wide bans.

peace
death.
|AmDeAtH @ Undernet
Death is only the *Beginning*...
Post Reply