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

by SaPrOuZy
Thu Jan 03, 2008 8:39 am
Forum: Scripting Help
Topic: identified users
Replies: 6
Views: 3253

if i'm not mistaken, i think he means users that have identified to the services on the irc network (ie: nickserv...)
by SaPrOuZy
Wed Jul 18, 2007 12:06 pm
Forum: Scripting Help
Topic: Formatted Text output
Replies: 4
Views: 3329

Formatted Text output

Hi Guys,

what is the equivalent for the mIRC tab character in tcl, i tried using \t but it seem that the mirc client isn't understanding it.

Thanks
by SaPrOuZy
Tue Jun 12, 2007 9:27 am
Forum: Script Support & Releases
Topic: Marky Color Uno
Replies: 4
Views: 4105

i actually modified it in the following way: if {[string match "*\{*" $nick] || [string match "*\}*" $nick] } { unontc $nick "Sorry $nick - you cannot join uno with this nick please use a nick that does not contain \002\{\}\002." return 0 } at least till someone does wh...
by SaPrOuZy
Tue Jun 12, 2007 5:50 am
Forum: Script Support & Releases
Topic: Marky Color Uno
Replies: 4
Views: 4105

Marky Color Uno

hey guys,

there's a problem in marky's color uno, where the script chokes on players with nicks containing { }.
Anyone has this fixed, or is willing to work on fixing it? am not finding much time to do that.

Thanks
by SaPrOuZy
Sat Apr 21, 2007 7:29 am
Forum: Scripting Help
Topic: Detect "(!) timer drift -- spun"
Replies: 6
Views: 4310

Detect "(!) timer drift -- spun"

Hey all, is there a way to detect "(!) timer drift -- spun X minutes" i have a join flood protection script that i want to disable when this happens because it will mistake normal joins with floods. i have a lag check incorporated in the script, it works fine when the bot is lagging due to...
by SaPrOuZy
Thu Jul 06, 2006 2:10 am
Forum: Scripting Help
Topic: need to rehash bot to change log files for custom tcl?
Replies: 1
Views: 2810

put

Code: Select all

set joins "/www/htdocs/dialtone_radio/logs/irc_$date.log"
before every

Code: Select all

set file [open $::joins a] 
by SaPrOuZy
Wed Jun 21, 2006 2:49 pm
Forum: Script Requests
Topic: random line from txt file
Replies: 2
Views: 2690

bind pub - !foo bar proc bar {nick uhost hand chan rest} { set file [open "txt_file_path" r] set data [split [read $file] "\n"] set line [lindex $data [rand [llength $data]]] putserv "privmsg $chan : $line" close $file } EDIT: Code fixed, thx Sir_Fz
by SaPrOuZy
Wed Jun 21, 2006 8:55 am
Forum: Scripting Help
Topic: Help about a link
Replies: 4
Views: 3950

try to be clearer...
by SaPrOuZy
Tue Jun 20, 2006 4:55 am
Forum: Script Requests
Topic: Scorebot
Replies: 5
Views: 3727

I'd guess it's a bot that somehow tracks/queries scores?!
obviously, but it's just a way to make him know he should provide detailed info when requesting a script and people wont guess what's requested.
by SaPrOuZy
Tue Jun 20, 2006 4:31 am
Forum: Script Requests
Topic: Scorebot
Replies: 5
Views: 3727

what's a scorebot?
by SaPrOuZy
Tue Jun 20, 2006 3:10 am
Forum: Scripting Help
Topic: Getting first Line of a on-the-web-located file
Replies: 16
Views: 11546

i think you should declare check as global try it. bind time - * man ;# runs every minute proc man {m h d mo y} { global check set a [info exists check] set fs [open file.txt r] gets $fs line(first) close $fs if { $a == 1 } { if { $check != $line(first) } { putserv "PRIVMSG #channel1 :$line(fir...
by SaPrOuZy
Mon Jun 19, 2006 4:10 pm
Forum: Scripting Help
Topic: string help (using a specific part of a string?)
Replies: 3
Views: 4533

u could use regexp:

Code: Select all

regsub -all -- $sline "Size.*" sline ""
but be away that in both my solution and deadite66's , if the bla bla contains the word Size it will be removed too.
by SaPrOuZy
Mon Jun 19, 2006 4:01 pm
Forum: Scripting Help
Topic: problem with exec - [SOLVED]
Replies: 2
Views: 3671

thx, i used wget's full path /usr/local/bin in my case.
works great :D
by SaPrOuZy
Mon Jun 19, 2006 7:06 am
Forum: Scripting Help
Topic: Getting first Line of a on-the-web-located file
Replies: 16
Views: 11546

try to replace: foreach e [split [::http::data $x] \n] { regsub -all {<([^<])*>} $e {} e puthelp "privmsg $c :$e" } with set e [lindex [split [::http::data $x] \n] 1] regsub -all {<([^<])*>} $e {} e puthelp "privmsg $c :$e" } i can't test it now, but i think it should work.[/quote]
by SaPrOuZy
Mon Jun 19, 2006 3:13 am
Forum: Scripting Help
Topic: Getting first Line of a on-the-web-located file
Replies: 16
Views: 11546

try using egghttp.tcl
or search the forum for http package