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 Feb 07, 2007 11:51 pm
Forum: Scripting Help
Topic: storing multiple variables (counters + names) in 1 file
Replies: 10
Views: 6726

as it's been pointed out countless times already, you should read the entire file, once only, on script's startup, into a list; then manipulate that list as you wish, typically on events that your script handles; save the list periodically into a file
by demond
Wed Feb 07, 2007 11:41 pm
Forum: Script Support & Releases
Topic: RSS news by demond
Replies: 175
Views: 253403

not a script problem; most likely you still can't get the config right
by demond
Wed Feb 07, 2007 11:39 pm
Forum: Script Support & Releases
Topic: Eggdrop RSS Syndication (rss-synd) v0.5b1
Replies: 399
Views: 651636

Giel wrote:Can someone help me with tinyurl integration? Tried to do it myself, but it didnt work. I dont get any error messages but the script parses the feeds with the original url's :-/
use the other RSS script from this forum, it supports URL redirection
by demond
Tue Feb 06, 2007 1:07 am
Forum: Eggdrop Help
Topic: Display number of users in channel on EXISTING webpage
Replies: 1
Views: 2232

put this in your config:

Code: Select all

bind time - * {set f [open foo w]; puts $f [llength [chanlist #chan]]; close $f;#}
every minute it will save the number of users on #chan in a file called foo
by demond
Tue Feb 06, 2007 12:46 am
Forum: Script Support & Releases
Topic: RSS news by demond
Replies: 175
Views: 253403

and no, 5 in my config is not the poll frequency - pay closer attention to it

my poll frequences are 17 for osnews and 11 for google news
by demond
Tue Feb 06, 2007 12:44 am
Forum: Script Support & Releases
Topic: RSS news by demond
Replies: 175
Views: 253403

that means how often the website which is the source of your RSS feed is being polled (checked) for news; 5 means that is done every 5 minutes, so your news can be late no more than 5 mins
by demond
Tue Feb 06, 2007 12:40 am
Forum: Script Support & Releases
Topic: Universal channel script
Replies: 224
Views: 216334

beasTMan wrote:so dudes , the script it's ok ? works ? type the link here , please.
it's on my website, also in the Tcl Archive
by demond
Tue Feb 06, 2007 12:36 am
Forum: Script Support & Releases
Topic: RSS news by demond
Replies: 175
Views: 253403

dude, decrease feed's poll frequency:

Code: Select all

# set your feed(s) sources here: feed name, channel, poll frequency in mins, feed URL
#
#set feeds(osnews:#chan1) {17 http://www.osnews.com/files/recent.rdf}
#set feeds(google:#chan2) {11 http://news.google.com/news?ned=us&topic=h&output=rss}
by demond
Sat Feb 03, 2007 11:05 pm
Forum: Script Support & Releases
Topic: RSS news by demond
Replies: 175
Views: 253403

zSolo wrote:For some reason, Its not annouceing the news as it comes. : / Any suggestions
yes, the usual - see what error msg you get on bot's console (dcc party line)
by demond
Sat Jan 27, 2007 12:22 am
Forum: Script Support & Releases
Topic: Universal channel script
Replies: 224
Views: 216334

Any idea how to make it work with an example like * badword *? learn regular expressions and set x:other:match to regexp for example, this will match (case-insensitively) the word foo at the beginning of a sentence, at the end, and separated by white space: (?i)(\s|^)foo(\s|$) (but it won't match f...
by demond
Sat Jan 20, 2007 12:15 am
Forum: Script Support & Releases
Topic: Universal channel script
Replies: 224
Views: 216334

eforce: you need to learn string matching rules; if you want to match words anywhere in a sentence, use *word* in your badwords file

serban: delete your chanfile and start over
by demond
Fri Dec 22, 2006 10:01 pm
Forum: Script Support & Releases
Topic: Universal channel script
Replies: 224
Views: 216334

no, it takes bot's altnick and realname
by demond
Thu Dec 21, 2006 12:43 pm
Forum: Script Requests
Topic: Search for special advertising script
Replies: 5
Views: 3179

most likely not

advertising is otherwise known as spamming, and noone here is particularly fond of spammers
by demond
Wed Dec 20, 2006 12:06 am
Forum: Script Requests
Topic: Announce bot delink/link to channel
Replies: 1
Views: 1959

Code: Select all

set chan #yours
bind link - * foo
bind disc - * foo
proc foo {args} {
   set bot [lindex $args 0]
   set via [lindex $args 1]
   if {$via != ""} {set t "$bot has linked via $via"} {set t "$bot delinked"}
   puthelp "privmsg $::chan :$t"
}
by demond
Tue Dec 19, 2006 2:17 am
Forum: Eggdrop Help
Topic: Eggdrop on irc.deltaanime.org
Replies: 19
Views: 19142

set your console +rv and see what happens

some ircds (not the main ones though) are in the habit of breaching the IRC protocol by not letting the client know it's been disconnected