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

by Cardinal
Wed Jul 30, 2008 5:11 am
Forum: Script Support & Releases
Topic: Weather script for wetter.com [German]
Replies: 222
Views: 218542

Ich habe mal versucht das selber zu fixen, aber ich steige bei dem ID System von Wetter.com schon überhaupt nicht durch :s

Würde mich freuen wenn De Kus da nochmal Zeit und Lust für findet.
by Cardinal
Mon Jul 24, 2006 6:41 am
Forum: Script Requests
Topic: Dirty Word Database ;)
Replies: 1
Views: 2460

Nobody who can help me?
by Cardinal
Fri Jul 21, 2006 6:15 am
Forum: Script Requests
Topic: Dirty Word Database ;)
Replies: 1
Views: 2460

Dirty Word Database ;)

Hello,
im searching for an TCL Script which could save a lot of Bad Words in a txt file and give it out on this way:

Mike: .abuse tom
<botnick>: Mike thinks tom is a <random word>

Could you help me? =)
by Cardinal
Sat Jun 10, 2006 2:09 pm
Forum: Scripting Help
Topic: Quote Script - No Output in Channel
Replies: 4
Views: 4856

Its the same Problem.

The Script allows to add Quotes and give an notice.

But it dont give out an Quote in the Channel.

Fixed!
by Cardinal
Sat Jun 10, 2006 2:02 pm
Forum: Scripting Help
Topic: Quote Script - No Output in Channel
Replies: 4
Views: 4856

Thx, i will test it
by Cardinal
Sat Jun 10, 2006 9:25 am
Forum: Scripting Help
Topic: Quote Script - No Output in Channel
Replies: 4
Views: 4856

Quote Script - No Output in Channel

Im using the Quote Script by Steinsky, since a short time the Bot gives no Output to the "!quote command. If i configure the script to give out the quotes in a private notice it still works. Also the bot add quotes with the "addquote" command in channel. It Just dont give out Quotes t...
by Cardinal
Thu Feb 02, 2006 5:12 am
Forum: Script Requests
Topic: Seen Script
Replies: 3
Views: 6891

Seen Script

Im searching for a "seen" Script which can tell when the requested Person said somethink the last time (and what he said?). A lot of chatters are using an bouncer so the most seen Scripts -such as bseen and the others in the egghelp archive- are not very usefull for me when the Requested p...
by Cardinal
Sun Jan 29, 2006 6:42 am
Forum: Script Requests
Topic: Ordered Response
Replies: 17
Views: 21024

Done! if {[file exists scripts/wordcount.txt]} { foreach {word count} [split [read [set infile [open scripts/wordcount.txt]]][close $infile] \n] { if {$word != ""} { set wordcount($word) $count } } } bind time ?0* save:wc bind pubm - * state:wc proc save:wc args { global wordcount set f [o...
by Cardinal
Sun Jan 29, 2006 6:21 am
Forum: Script Requests
Topic: Mondgesicht
Replies: 0
Views: 4792

Mondgesicht

Well this Script is only known by german users i think ;) so i write this Request in german. Ich suche ein Mondgesicht Script. Die Leute von SI behalten ihr Scipt (entgegen der GPL?) für sich. Ich habe zwar eines gefunden http://j0o.de/xela/thread.php?threadid=134&sid= Jedoch gibt es damit ein P...
by Cardinal
Sun Jan 29, 2006 6:15 am
Forum: Script Requests
Topic: Ordered Response
Replies: 17
Views: 21024

I replaced the * on bind pubm with "Junge" because the script should just count the word "junge", not every word ;)

But thats not working...

Thank you anyway for the patience![/code]
by Cardinal
Sat Jan 28, 2006 4:40 am
Forum: Script Requests
Topic: Ordered Response
Replies: 17
Views: 21024

The Script should count how often the word hello was used in the channel, and always give out the count if its used.
So the script must save the number in a file to keep it on a reboot.

i.e:
Chan: Junge
Bot: Junge Nr. 5982

Chan: Junge
Bot: Junge Nr. 5983

...
by Cardinal
Fri Jan 27, 2006 2:18 pm
Forum: Script Requests
Topic: Ordered Response
Replies: 17
Views: 21024

if {![file exists counter.txt]} { close [open counter.txt a+] } bind pub - junge junge:reply proc junge:reply {nick uhost hand chan arg} { global jungereply if {![info exists jungereply([set chan [string tolower $chan]])]} { set jungereply($chan) [list [unixtime] 1] } set file [open counter.txt r] ...
by Cardinal
Fri Jan 27, 2006 12:56 pm
Forum: Script Requests
Topic: Ordered Response
Replies: 17
Views: 21024

Im sure im going on your nerves... but bind pub - hallo! hallo:reply proc hallo:reply {nick uhost hand chan arg} { global halloreply if {![info exists halloreply([set chan [string tolower $chan]])]} { set halloreply($chan) [list [unixtime] 1] } foreach {t o} $halloreply($chan) {break} if {[unixtime]...
by Cardinal
Thu Jan 26, 2006 6:50 pm
Forum: Script Requests
Topic: Ordered Response
Replies: 17
Views: 21024

thx again! Its working
by Cardinal
Thu Jan 26, 2006 2:00 pm
Forum: Script Requests
Topic: Ordered Response
Replies: 17
Views: 21024

Both scripts are not working:

Tcl error [hallo:reply]: can't read "halloreply": variable is array