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

by Real
Mon Jun 18, 2007 1:41 pm
Forum: Script Support & Releases
Topic: [google.tcl] !image doesn't work anymore?
Replies: 12
Views: 8970

There's still no fix for this. Other scripts seem to be too complicated for me.

No one has a decent solution for this? :(
by Real
Mon May 14, 2007 4:30 pm
Forum: Script Support & Releases
Topic: [google.tcl] !image doesn't work anymore?
Replies: 12
Views: 8970

I emailed him, but unfortunately no response (yet).

Does anyone have a clue what might be the problem?
by Real
Mon May 07, 2007 4:01 pm
Forum: Script Support & Releases
Topic: [google.tcl] !image doesn't work anymore?
Replies: 12
Views: 8970

[google.tcl] !image doesn't work anymore?

Howdy. I have a problem with my google.tcl script. For some reason my !image command doesn't do anything anymore. I suspect this has something to do with Google changing something to their website, perhaps? My bot doesn't return any errors when using the !image command. I've tried disabling all othe...
by Real
Tue Jul 13, 2004 12:09 pm
Forum: Archive
Topic: Saving a variable into a text file
Replies: 2
Views: 1245

Saving a variable into a text file

Well I think the topic says it all doesn't it :) I've been trying to make the script myself, but it's just too hard for me :( I've also searched on the forum, but nothing seems to work So first, I want to write a line in a text file: proc savevar set thevar $text save $thevar in $thisfile (so there ...
by Real
Tue Jun 22, 2004 12:35 pm
Forum: Archive
Topic: Splitting a text file into lines
Replies: 1
Views: 1219

Splitting a text file into lines

Hello. proc proc_join {nick uhost hand chan} { global myhostmask pmfile if {$uhost == $myhostmask} { set pmfileread [open $pmfile r] set pmdata [read -nonewline $pmfileread] close $pmfileread putserv "PRIVMSG $nick :$pmdata" } } This is my code. If for example in the text is: This is sente...
by Real
Tue Jun 01, 2004 2:57 pm
Forum: Archive
Topic: How to msg a $list ?
Replies: 7
Views: 2730

How to msg a $list ?

proc pub_admin {nick host hand chan arg} { foreach user [chanlist $chan] { if {[isop $user $chan]} { if {[info exists list]} { append list " $user" } else { set list "$user" } } } putserv "PRIVMSG $chan : $list, $nick called for an admin!" } Hi, this is the current cod...
by Real
Mon May 17, 2004 10:45 am
Forum: Archive
Topic: Problem with eggdrop
Replies: 1
Views: 1447

Problem with eggdrop

Hello a while ago I made a minor adjustment to some *.tcl script, and I didn't change anything to the google.tcl script, but when I rehashed I got this: <B0t> [20:59] Tcl error in file 'eggdrop.conf': <B0t> [20:59] can't find package http <B0t> while executing <B0t> "package require http" ...
by Real
Mon May 10, 2004 11:11 am
Forum: Archive
Topic: Small problem with !op script
Replies: 1
Views: 611

Small problem with !op script

Hello I want to make a script that has this: Owners (or higher) can use " !op nick " to op this person. Nick is optional, otherwise it will op the person himself. But I also want the script to let ops in the channel use the command. So everybody who has op, can use " !op nick " t...
by Real
Mon Apr 12, 2004 3:07 pm
Forum: Archive
Topic: How to delete a value in a variable?
Replies: 5
Views: 1574

thanks caesar, it works perfectly :)
by Real
Sun Apr 11, 2004 2:47 pm
Forum: Archive
Topic: How to delete a value in a variable?
Replies: 5
Views: 1574

dollar wrote:Split the string and remove the element with lreplace (http://www.tcl.tk/man/tcl8.4/TclCmd/lreplace.htm)
Sorry but I have no idea how to do that :)
Could you give me an example or anything?

Thanks
by Real
Sun Apr 11, 2004 7:52 am
Forum: Archive
Topic: How to delete a value in a variable?
Replies: 5
Views: 1574

How to delete a value in a variable?

Hello I made a proc which lets people put themselves in the topic, whether or not they are available for a clanwar. In short this is: proc pub_waravail {nick host hand chan text} { global avail set myname "[lindex $text 0]" if {($myname != "")} { if {$avail == ""} { set...
by Real
Sun Apr 11, 2004 7:04 am
Forum: Archive
Topic: !op problem
Replies: 4
Views: 1399

Ok thank you, I fixed the problem :) Now there's another small issue bind pub - !deop pub_deop set botname "Botbot" proc pub_deop {nick mask hand chan text} { global botname if {[isop $nick $chan]} { set deopname "[lindex $text 0]" if {[string match -nocase $deopname $botname]} {...
by Real
Sat Apr 10, 2004 11:17 am
Forum: Archive
Topic: !op problem
Replies: 4
Views: 1399

!op problem

First problem: everybody in the channel can execute the !op command, however I stated in my script that only ops can use it. How is this possible? bind pub - !op pub_op proc pub_op {nick mask hand chan text} { foreach user [chanlist $chan] { if {[isop $user $chan]} { set opname "[lindex $text 0...
by Real
Wed Apr 07, 2004 5:52 am
Forum: Archive
Topic: Which command in TCL?
Replies: 5
Views: 1398

Which command in TCL?

1) I have a rather stupid question. What is the $+ command in TCL? I've tried searching for it in google and on this forum, but it's quite impossible to search for since it only uses special characters. Thanks in advance 2) Is there a way to save global variables, so that they are still there when t...
by Real
Sat Mar 27, 2004 12:57 pm
Forum: Archive
Topic: Script for changing the topic
Replies: 3
Views: 1244

proc pub_avail {nick host hand chan text} { global avail set myname "[lindex $text 1]" if {($myname != "") && ([string match -nocase "#666.to" "$chan"])} { if {$avail == ""} { set avail "$myname" } else { append avail " $mynam...