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

by demond
Wed Aug 16, 2006 11:32 pm
Forum: Script Requests
Topic: Connect as serverr
Replies: 7
Views: 4561

tosser: you are completely clueless on the subject, either give up on it or go learn the IRC server protocol; you don't even know what ircd is, let alone how a service relates to it to be honest, I've never seen someone else trying to come up with something knowing absolutely nothing about it - not ...
by demond
Wed Aug 16, 2006 12:08 pm
Forum: Script Requests
Topic: addchannel on allvoive.tcl
Replies: 12
Views: 7396

and we don't know what allvoice.tcl is
by demond
Wed Aug 16, 2006 12:06 pm
Forum: Script Requests
Topic: Connect as serverr
Replies: 7
Views: 4561

to create an IRC network out of channels on other network
by demond
Wed Aug 16, 2006 3:33 am
Forum: Tcl FAQ
Topic: Parsing webpages made easy
Replies: 30
Views: 110719

flashy wrote:man thats awesome, can someone make a little how-to guide to finding out the nessery things to phrase something off a webpage? finding out table size td row div and such using dom inspector?
that would be your basic HTML primer
by demond
Wed Aug 16, 2006 3:27 am
Forum: Eggdrop Help
Topic: Linked Bots
Replies: 3
Views: 3281

it works by utilizing bizarre quantum forces to transmit the chatter
by demond
Tue Aug 15, 2006 11:25 pm
Forum: Script Support & Releases
Topic: football links are broke with tsnstats 0.6 [Problem Solved]
Replies: 12
Views: 9833

all scripts that fetch info from webpages eventually get broken as those pages change in structure and authors are no longer around to update their hardcoded stuff; that is your case as well you won't get the help you need - why? because in order to update this script, someone would have to bother t...
by demond
Tue Aug 15, 2006 10:23 pm
Forum: Script Requests
Topic: Connect as serverr
Replies: 7
Views: 4561

this is an excerpt from my IRC server emulator ircd.tcl proc introduce_server {host port password} { variable connected variable idx; variable myname if ![valididx $idx] return set connected 1; variable gotpong 0 log "connected to $host:$port, introducing myself..." switch $::ircd::servtyp...
by demond
Tue Aug 15, 2006 4:56 am
Forum: Eggdrop Help
Topic: I think I can flood myself off this way.....
Replies: 1
Views: 2310

unload scripts, change servers
by demond
Mon Aug 14, 2006 12:16 pm
Forum: Eggdrop Help
Topic: during eggdrop setup - unknown problem occurs during linking
Replies: 8
Views: 5820

-I/usr/include won't help as gcc always looks there no matter what; omitting the static lib extension probably will
by demond
Mon Aug 14, 2006 11:04 am
Forum: Scripting Help
Topic: help with add
Replies: 13
Views: 13091

get rid of the [close [open]] nonsense and read here how you should deal with files
by demond
Mon Aug 14, 2006 10:56 am
Forum: Script Requests
Topic: trojan scan script
Replies: 6
Views: 4363

how do you detect these? if by some signature in their nick/ident/irc name, you can use xchannel; if by ctcp version, you need another script (i plan on adding such check to mine)
by demond
Sat Aug 12, 2006 6:52 pm
Forum: Script Support & Releases
Topic: RSS news by demond
Replies: 175
Views: 256798

vox populi, vox dei

now sporting multiple feeds on the same channel; please also note that the public command has been changed from !rss to !news

grab the brand new version 2.0
by demond
Fri Aug 11, 2006 12:15 pm
Forum: Script Support & Releases
Topic: RSS news by demond
Replies: 175
Views: 256798

people have spoken, so I decided to implement multiple feeds per channel; the new version will be released shortly, stay tuned
by demond
Fri Aug 11, 2006 4:24 am
Forum: Scripting Help
Topic: make lsearch case insensitive
Replies: 6
Views: 6755

[lsearch] has -nocase switch in Tcl 8.5 only
by demond
Thu Aug 10, 2006 12:20 pm
Forum: Scripting Help
Topic: Problem with deleting a whole line of a textfile
Replies: 9
Views: 8343

I've said that countless times before, but darton just won't listen. The (arguably) proper way of using files in eggdrop scripts is: open the file only ONCE, on script's start-up; read the entire content into a list (or array or whatever), then close the file manipulate that list as you wish in your...