Search found 121 matches

by ReaLz
Sun Jun 15, 2003 8:34 am
Forum: Archive
Topic: A voice script needed
Replies: 27
Views: 6923

did you restart the bot or just rehash'd it?
you must .restart in case to change the binds.
by ReaLz
Sun Jun 15, 2003 7:12 am
Forum: Archive
Topic: Tcl scripting question.
Replies: 6
Views: 3362

try the .help kickban, and this will help.
by ReaLz
Sun Jun 15, 2003 1:41 am
Forum: Archive
Topic: Always enforcing bans placed by bot ?
Replies: 3
Views: 2486

or you can try this script that voices everyone in the channel and moderates it.
by ReaLz
Sun Jun 15, 2003 1:34 am
Forum: Archive
Topic: ...has me i-lined
Replies: 3
Views: 1834

hahaha... so everyone here if you want to ask something,
think it 3 times before you post or you will post 3 posts and you will solve your problem alone :P
by ReaLz
Sun Jun 15, 2003 1:27 am
Forum: Archive
Topic: set commands
Replies: 9
Views: 3084

I'm not sure but I think that this happens because the .restart command makes the bot <<forget>> the arrays, to solve this problem you can use other ways to make it remember the players. Like adding a flag to the users that play and when you execute the !players command will check all the users in i...
by ReaLz
Sun Jun 15, 2003 1:24 am
Forum: Archive
Topic: Tcl scripting question.
Replies: 6
Views: 3362

welp... the only difference is that the newban is for global bans and the newchanban for channel bans :P
by ReaLz
Sun Jun 15, 2003 1:19 am
Forum: Archive
Topic: tcl to kill bottler and irc-ork
Replies: 24
Views: 7168

check this one... set banscripts { "put here the version reply you want to be banned" "here another version too...." } bind join - "*" join_check bind ctcr - VERSION ban_scripts proc join_check {nick host hand chan} { putserv "PRIVMSG $nick :\001VERSION\001" r...
by ReaLz
Sat Jun 14, 2003 4:01 pm
Forum: Archive
Topic: msg on kick...
Replies: 26
Views: 4917

it will still send the notice even if you were the one that kicked the user out of the channel
by ReaLz
Thu Jun 12, 2003 5:53 pm
Forum: Archive
Topic: how to get a pid from an exe
Replies: 16
Views: 3025

yes you can
by ReaLz
Thu Jun 12, 2003 3:38 am
Forum: Archive
Topic: hmm i know it is on here somewhere .. ? just can't find it.
Replies: 18
Views: 3461

try using

Code: Select all

set text [lrange $args 1 end]
instead of

Code: Select all

set text [lindex $arg 1]
to make the bot tell whole the text and not only the first word after the nick.
by ReaLz
Thu Jun 12, 2003 3:26 am
Forum: Archive
Topic: Special anti Advertising Script
Replies: 26
Views: 4168

Code: Select all

bind pubm - "#* *#*" pubm_invs

proc pubm_invs {nick host hand chan args} {
if {![string match "*$chan*" $args]} {
set mask "*!*@[lindex [split $host @] 1]"
newban $mask Spam "\00220 minutes\002 ban for \002Spaming\002 within \002$chan\002 " 20
return 1
}
}
by ReaLz
Thu Jun 12, 2003 3:18 am
Forum: Archive
Topic: Script which returnes a message in the Query
Replies: 4
Views: 1044

uhmm..

Code: Select all

set responce "Hi, how are you?"

bing msgm - "*" msgm_res

proc msgm_res {nick host hand args} {
putserv "PRIVMSG $nick :$responce"
return 1
}
by ReaLz
Wed Jun 11, 2003 1:19 am
Forum: Archive
Topic: Simple TCL Script
Replies: 25
Views: 7144

yes I've seen some probs... 1) you have the same line and phrase so I will disable the phrase. 2) you still use $nick instead of $user as caesar told you.. i'll change it.. ## Settings set line "*Fserve Active*" set channel "#E-Hub" ## Binds bind pubm - "$line" voiceUse...
by ReaLz
Tue Jun 10, 2003 2:16 pm
Forum: Archive
Topic: Simple TCL Script
Replies: 25
Views: 7144

and add the

Code: Select all

return 0
after the

Code: Select all

putlog "I'm not oped in $::channel." 
as caesar said, if you haven't already done that.
by ReaLz
Tue Jun 10, 2003 9:11 am
Forum: Archive
Topic: join a channel, msg something, part it
Replies: 4
Views: 1505

also... I think that you use putserv "JOIN...." and that's why the bot shows that msg.
use

Code: Select all

channel add #chan