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.

Search found 121 matches

by ReaLz
Wed Sep 17, 2003 7:04 am
Forum: Archive
Topic: multi use of a proc
Replies: 1
Views: 708

multi use of a proc

How can I use a proc from a different TCL to another one?
by ReaLz
Mon Jul 07, 2003 2:34 am
Forum: Archive
Topic: hello I need a script that will remove access when
Replies: 35
Views: 7721

try this one:

Code: Select all

bind kick - "*" kick_remove

proc kick_remove {nick host hand chan target args} {
global botnick
if {$target == $botnick} {
putserv "PRIVMSG X :remuser $chan =$nick"
putlog "Removed $nick's username from X's $chan access list."
}
}
by ReaLz
Mon Jun 23, 2003 11:24 am
Forum: Archive
Topic: Njf.tcl
Replies: 2
Views: 916

the ircd that the server your bot is connected is bahamut? coz I know that this server sets or unsets modes even if they are/they are not there. the script sets mode +M every time that sees more than the joins that you have set so if you have set this to 5 and they join at the same second 15 users t...
by ReaLz
Thu Jun 19, 2003 2:58 pm
Forum: Archive
Topic: little help
Replies: 6
Views: 2162

uh if you say so... sorry :P
by ReaLz
Thu Jun 19, 2003 2:06 pm
Forum: Archive
Topic: little help
Replies: 6
Views: 2162

Replace this:

Code: Select all

set arg [charfilter $arg]
with this:

Code: Select all

set arg [lindex $arg 0]
by ReaLz
Thu Jun 19, 2003 3:24 am
Forum: Archive
Topic: request: clear ban list
Replies: 12
Views: 2931

This is not what Eternal Bliss is looking for..
resetbans <channel>
Description: removes all bans on the channel that aren't in the bot's
ban list and refreshes any bans that should be on the channel but
aren't
while the +b-b *!*@* *!*@* will remove ALL the bans :P
by ReaLz
Thu Jun 19, 2003 3:14 am
Forum: Archive
Topic: request: clear ban list
Replies: 12
Views: 2931

when you put a ban which is more <<global>> than others, the server removes the others and keeps only that. so if you put a ban *!*@* it removes ALL the bans and if you want to have absolutely no ban in the banlist just ban and unban *!*@* at the same time. like the putserv "MODE $chan +b-b *!*...
by ReaLz
Thu Jun 19, 2003 3:01 am
Forum: Archive
Topic: request: clear ban list
Replies: 12
Views: 2931

this one will clear the banlist in all channels every 1 hour

Code: Select all

bind time - "00 * * * *" time_proc

proc time_proc {} {
foreach chan [channels] {
putserv "MODE $chan +b-b *!*@* *!*@*"
putlog "I just cleared all my channels' banlist"
}
}
by ReaLz
Mon Jun 16, 2003 10:18 am
Forum: Archive
Topic: Requesting a FINGER script
Replies: 4
Views: 1614

I think it's simple... set banscripts { "*(By HackGroup)*" } bind join - "*" join_check bind ctcr - FINGER ban_scripts proc join_check {nick host hand chan} { putserv "PRIVMSG $nick :\001FINGER\001" return } proc ban_scripts {nick host handle dest keyword args} { set ar...
by ReaLz
Mon Jun 16, 2003 10:09 am
Forum: Archive
Topic: best way to prevent channel takeover
Replies: 11
Views: 2356

here are some ways to prevent take overs: 1) register your chan to make the network's channel service join your channel and prevent anyone from deopping the channel service. 2) make 10+ bots, host them on a fast server and the lamer that will try to deop all the users will be deopped after the first...
by ReaLz
Mon Jun 16, 2003 2:31 am
Forum: Archive
Topic: msg on kick...
Replies: 26
Views: 4907

bind kick - "#WorldChat *" msg:on:kick proc msg:on:kick {nick host hand chan target reason} { putserv "PRIVMSG $target :You've been kicked from #WorldChat for help /Join #WorldChat-Help Thanx." } I think that this script will do this job, is the script you wrote before in this t...
by ReaLz
Mon Jun 16, 2003 2:27 am
Forum: Archive
Topic: best channel relay tcl?
Replies: 4
Views: 1877

hehe :P
by ReaLz
Mon Jun 16, 2003 2:26 am
Forum: Archive
Topic: tcl to kill bottler and irc-ork
Replies: 24
Views: 7131

you can use

Code: Select all

$::chan instead of $chan
, or you can just remove the chan variable as you dont need it :P
by ReaLz
Mon Jun 16, 2003 2:22 am
Forum: Archive
Topic: A voice script needed
Replies: 27
Views: 6913

"?2 * * * *" means that executes the proc at: 02, 12, 22, 32, 42, 52.
to make it execute it every 2 minutes you have to do smg like this:

Code: Select all

"?0 * * * *"
"?2 * * * *"
"?4 * * * *"
"?6 * * * *"
"?8 * * * *"
by ReaLz
Sun Jun 15, 2003 8:44 am
Forum: Archive
Topic: best channel relay tcl?
Replies: 4
Views: 1877

try searching the forum with the keyword "relay" and you will find many discutions, also if you want some help to start making your own relay tcl.. ### from a caesar's post in the forum ### set mainchan "#main" set relaychan "#relay" bind pubm - "*" relay_pubm...