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.
Old posts that have not been replied to for several years.
Sir_Fz
Revered One
Posts: 3794 Joined: Sun Apr 27, 2003 3:10 pm
Location: Lebanon
Contact:
Post
by Sir_Fz » Sat Jun 14, 2003 7:47 pm
what's the difference between
newban and
newchanban ?
what I can conclude, is that newban sets a ban but doesn't remeber it for the time set. but newchanban remembers it so even if the person rejoins before the ban expires, he will get kicked.
am I right ot not ?
user
Posts: 1452 Joined: Tue Mar 18, 2003 9:58 pm
Location: Norway
Post
by user » Sat Jun 14, 2003 9:12 pm
You're not right.
Read doc/tcl-commands.doc
ReaLz
Op
Posts: 121 Joined: Sat Oct 19, 2002 5:33 am
Location: Athens, Greece
Post
by ReaLz » Sun Jun 15, 2003 1:24 am
welp... the only difference is that the newban is for global bans and the newchanban for channel bans
«A fantastic spaghetti is a spaghetti that does not exist»
Sir_Fz
Revered One
Posts: 3794 Joined: Sun Apr 27, 2003 3:10 pm
Location: Lebanon
Contact:
Post
by Sir_Fz » Sun Jun 15, 2003 7:02 am
mm, ok thanx I got it
but isn't there a way to ban ppl without remebering them. for example:
if the bot bans a user
then another op unbans the user
the user joins
and the bot doesn't kick ban him. (else it would kickban him with reason "Banned: <reason>"
I want it just to ban and unban later (if the ban is still in the channel's ban list)
ReaLz
Op
Posts: 121 Joined: Sat Oct 19, 2002 5:33 am
Location: Athens, Greece
Post
by ReaLz » Sun Jun 15, 2003 7:12 am
try the .help kickban, and this will help.
«A fantastic spaghetti is a spaghetti that does not exist»
caesar
Mint Rubber
Posts: 3778 Joined: Sun Oct 14, 2001 8:00 pm
Location: Mint Factory
Post
by caesar » Sun Jun 15, 2003 7:58 am
Better see the .help +ban
Once the game is over, the king and the pawn go back in the same box.
Sir_Fz
Revered One
Posts: 3794 Joined: Sun Apr 27, 2003 3:10 pm
Location: Lebanon
Contact:
Post
by Sir_Fz » Sun Jun 15, 2003 12:10 pm
no that's not what I mean.
I mean in a script the ban code is as follows:
Code: Select all
set mask [uhost....]
putquick "MODE $chan +b $mask"
putkick $chan $nick "Reason - banned 10mins."
utimer 600 "putserv \"MODE $chan -b $mask\""
}
know what I mean. So is there a way to make it do the same but if the $mask is unbanned by someone else then the utimer stops.