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

by De Kus
Sun Nov 15, 2009 5:54 am
Forum: Script Support & Releases
Topic: Weather script for wetter.com [German]
Replies: 222
Views: 218112

Ich habe es jetzt nicht ausprobiert, aber ich lege dir ans Herz deine Scripts endweder im -Tag oder als Dateidownload anzubieten. So kann man nur schwer die Formation des Codes wiedererkennen. Hoffe das hilft den Leuten weiter, beruhigt mich auch ein wenig, da man nach dem so langen Bereitstellen ei...
by De Kus
Mon Sep 28, 2009 1:52 pm
Forum: Modules & Programming
Topic: Getting eggdrop ready for UTF-8
Replies: 17
Views: 55690

Are you aware that the real problem has never been the messages going in and out but the channel/user names?! I see only multilingual messages, but not any channel name. Or am I just looking close enough?
by De Kus
Fri Feb 13, 2009 3:39 am
Forum: Script Support & Releases
Topic: Weather script for wetter.com [German]
Replies: 222
Views: 218112

Prinzipiel könnte man sich zwar mittlerweile drum kümmern, da glaub diese EM-Weiterleitung oder was das war nimmer geschaltet ist, aber derzeit komm ich einfach nicht dazu und kann auch net versprechen, wann das mal kommen könnte.
by De Kus
Mon Aug 04, 2008 11:05 am
Forum: Modules & Programming
Topic: Getting eggdrop ready for UTF-8
Replies: 17
Views: 55690

I know I am a little late for feedback, but the project was frozen for a little bit, so I was able to confirm it just now. And yeah, it also fixed the issue with the bot unable to "listen" to utf-8 channel. I am truely amazed, that such a simple thing can fix such a troublesome issue. The ...
by De Kus
Mon Jun 16, 2008 12:35 pm
Forum: Modules & Programming
Topic: Getting eggdrop ready for UTF-8
Replies: 17
Views: 55690

Well, my problem wasn't the UTF-8 output. I didn't test the hack, but since my bots TCL-Encoding is already UTF-8, I am pretty sure it wouldn't change a thing.
by De Kus
Sat Jun 07, 2008 1:51 pm
Forum: Script Support & Releases
Topic: Weather script for wetter.com [German]
Replies: 222
Views: 218112

Das ist die Meldung der wir es gerade hatten. Der arme Bot wird durch die derzeit geschaltete Weiterleitung total verwirrt. Ich will da eigentlich erst was machen, wenn diese Weiterleitung nicht mehr besteht.
by De Kus
Fri Jun 06, 2008 6:26 pm
Forum: Script Support & Releases
Topic: Weather script for wetter.com [German]
Replies: 222
Views: 218112

Also sofort werd ich da ungern ran gehen, da die Seite selbst ja noch im Betastatus ist. Wer weiß was sich da noch ändert. Ansonsten will ich net versprechen, dass es eine geben wird, aber ich werd mir das auf jeden Fall mal anschauen und wenn sich das schnell genug hinbiegen lässt, wie ich Zeit daz...
by De Kus
Sun May 11, 2008 3:45 am
Forum: Script Support & Releases
Topic: Chanservneed
Replies: 63
Views: 46248

That's caused by your flag l which tells the bot to have halfop on the channel, therefore it tries to gain halfop using the halfop command. Removing the o flag from chanserv tells the bot to never request op by itself. Therefore it would only get op, when chanserv feels like doing so. I cannot exact...
by De Kus
Fri May 09, 2008 8:55 am
Forum: Script Support & Releases
Topic: Chanservneed
Replies: 63
Views: 46248

Ahh, I guess I know what he means. But looking at the handle:deop I wonder if this the place where reop conditions are checked. I am pretty sure that my bots do not reop uppon deop of myself. Looking at the code I understand, that only deops of chanserv are explicitly made undone (due to deops of ne...
by De Kus
Fri May 09, 2008 3:36 am
Forum: Script Support & Releases
Topic: Chanservneed
Replies: 63
Views: 46248

I just tried to understand what you tried to say, but I simply don't get it at all. The only thing I am pretty sure about is, that you are talking about the "op" brace in handle:need, right?
by De Kus
Wed Apr 02, 2008 4:11 pm
Forum: Script Support & Releases
Topic: Weather script for wetter.com [German]
Replies: 222
Views: 218112

Ich habe eher Probleme damit, dass er bei manchen Requests einfach hängen bleibt und nicht abschließt. Ich sollte das eigentlich mal besser lösen, sodass mehrere Zugriffe gleichzeitig möglich wären... aber diese elende Lust und Zeit. ^-^ Also am Code vom zählbaren Flood kann es nicht liegen. Denkt d...
by De Kus
Fri Feb 29, 2008 5:34 pm
Forum: Script Support & Releases
Topic: Weather script for wetter.com [German]
Replies: 222
Views: 218112

Ich möchte mich hier nochmal bei allen entschuldigen, dass ich in letzter den Support für das Script leider aus RL-Gründen schleifen lassen musste. Ich habe nämlich letztes Jahr eine Ausbildung als FI-Anwendungsentwickler begonnen und da fehlt einem etwas die Motivation sich abends nochmal ans Scrip...
by De Kus
Wed Jan 30, 2008 4:44 am
Forum: Scripting Help
Topic: How to get a script to reload itself in eggdrop?
Replies: 8
Views: 9125

You should have made the effort to look into that "partyline" stuff. You can do great things with it. Best solution would however be to contact the writer of the script to reinitialize itself using a timer after the connection dropped. If you are unable to do that, you might want to search...
by De Kus
Sun Jan 27, 2008 4:53 am
Forum: Other Topics
Topic: Depreciated or not depreciated?
Replies: 4
Views: 4931

The tcl 8.5 docu doesn't prefer either of the 2 possibilities. To quote the documentation: The then and else arguments are optional “noise words” to make the command easier to read. And I'd take that literally. They are meant to make code easier to read, that means either always use them or never. ^...
by De Kus
Sun Jan 20, 2008 7:07 am
Forum: Scripting Help
Topic: random letter [solved]
Replies: 4
Views: 3132

To have alphanumerics you could do a rand() * 60 and check if the result is <= 10 and add 48, or is <= 36 to add 55 and else add 61. (I didn't test the exact result, the adds are +/-1 therefore ^-^)
Just as a remark for the future.