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 79 matches

by honeybee
Fri Jul 14, 2006 5:51 pm
Forum: Script Requests
Topic: handling raw irc output data..
Replies: 5
Views: 4472

anyone can help me please?
by honeybee
Wed Jul 12, 2006 1:04 am
Forum: Script Requests
Topic: handling raw irc output data..
Replies: 5
Views: 4472

Ok thats my another try though its working but it has few logical issues as far as i think first one is, i set target as set target [lindex [split $arg] 0]] and then set ::blah(target) $target , i did to check if info exsist for target [info exist ::blah(target)] , but thats wrong casue when .infoni...
by honeybee
Sun Jul 09, 2006 12:12 pm
Forum: Script Requests
Topic: handling raw irc output data..
Replies: 5
Views: 4472

handling raw irc output data..

I'm trying to make two major procs to get the irc raw output, whois info and whowas info so i can access these proc from another proc and get the data, i need help as i m new in handling irc raw output thanks. proc raw:rev:311 {f k t} { set nick [lindex [split $t] 1] set ident [lindex [split $t] 2] ...
by honeybee
Sun Jul 09, 2006 8:55 am
Forum: Scripting Help
Topic: is this correct?
Replies: 4
Views: 3560

metroid wrote: then use private messaging . This is a public forum and if you only want answers from them, i would advise you to use private messages. It's fairly obnoxious to make a topic and then when you're being helped with a piece of scripting that doesn't and won't ever work correctly you ask...
by honeybee
Sat Jul 08, 2006 9:33 pm
Forum: Script Support & Releases
Topic: bad channel script
Replies: 2
Views: 8543

bad channel script

with small fixation suggested by demond and ban type change i m still encountering this error when i type .set errorInfo #Honey# set errorInfo Currently: can't read "host": no such variable Currently: while executing Currently: "unset bcqueue($host) bcnicks($nick)" Secondly this ...
by honeybee
Sat Jul 08, 2006 8:56 pm
Forum: Scripting Help
Topic: is this correct?
Replies: 4
Views: 3560

MeTroiD wrote: that won't even work. [lindex [split $uhost @] 0] is enough for the ident. using another [lindex [split 1]] (you didn't even use an index with that lindex so it would generate an error anyway is pointless. thats working perfect, anyway thanks for the suggestion i would like to hear f...
by honeybee
Sat Jul 08, 2006 11:12 am
Forum: Scripting Help
Topic: is this correct?
Replies: 4
Views: 3560

is this correct?

I'm trying to get the ident in this fashion *!*ident@* to check something, assuming identd is installed, so i m doing it with
set checkid "*!*[lindex [split [lindex [split $uhost @] 0] 1]]@*"
, any better solution?
by honeybee
Thu Jun 29, 2006 1:45 pm
Forum: Scripting Help
Topic: Spliting arguments
Replies: 1
Views: 2940

Spliting arguments

I'm using a public command tcl, though i have splited the argument
example: [lrange [split $arg] 1 end]

but still if someone use reason with special chars like [ or \ the reason appeared to be
like: {[/z]} {}) or {[whatever reason with brackets]})
, which is surely a security whole.
[/quote]
by honeybee
Tue Jun 27, 2006 10:08 am
Forum: Scripting Help
Topic: need to change Bad channel bantype.
Replies: 3
Views: 3628

i guess its faster to set it and then return.
by honeybee
Mon Jun 26, 2006 9:18 pm
Forum: Scripting Help
Topic: need to change Bad channel bantype.
Replies: 3
Views: 3628

need to change Bad channel bantype.

Hey guys. I am using badchan.tcl by bass, and wants to change the default ban type to *!*@host.ip here is the bass code responsible for it. proc bmaskhost {uhost} { set uhost [lindex [split $uhost !] [expr [llength [split $uhost !]] -1]] set temp [string range [lindex [split $uhost @] 0] [expr [stri...
by honeybee
Fri Jun 23, 2006 7:54 am
Forum: Script Support & Releases
Topic: Universal channel script
Replies: 224
Views: 216398

well i just wanted to use random detection nick thats it.
by honeybee
Thu Jun 22, 2006 8:17 am
Forum: Script Support & Releases
Topic: Universal channel script
Replies: 224
Views: 216398

hey demon,
I want to use your heuristics detection algorithm for random nicks as you suggested lately in sb:score here: [url]http://forum.egghelp.org/viewtopic.php?t=9808&start=15[/url] instead of whole xchannel.tcl. can you do this please?
by honeybee
Fri May 12, 2006 1:25 pm
Forum: Scripting Help
Topic: is it correct?
Replies: 5
Views: 5429

Thanks, i was thinking to use.

Code: Select all

if {[expr $hour % 3]} { return }
by honeybee
Fri May 12, 2006 9:41 am
Forum: Scripting Help
Topic: is it correct?
Replies: 5
Views: 5429

is it correct?

I'm trying to make a time check bind to hit routine:check proc after every 3 hours. i guess its not the correct way, btw. with current version of tcl we can directly do it instead of making bind for everyhour and checking inside the proc? bind time - "*0 * * * *" routine:check bind time - ...
by honeybee
Thu May 11, 2006 7:37 pm
Forum: Script Requests
Topic: getting problem with matching pattern.
Replies: 8
Views: 5918

Ok thanks i did it myself.