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

by pitbull
Sat Dec 31, 2011 9:45 pm
Forum: Script Requests
Topic: BitCoin Market Exchange Rate
Replies: 9
Views: 14312

Here's something I scratched together to do this in our chan. Thanks to speechless for the http/ssl part (the bulk of the code, really). package require http package require tls http::register https 443 [list ::tls::socket -require 0 -request 1] proc s:wget { url } { http::config -useragent "Mo...
by pitbull
Mon Jul 14, 2008 12:32 pm
Forum: Scripting Help
Topic: Complete Newbie - Needing Basic Script With Basic Triggers
Replies: 22
Views: 19263

Why not help the guy out a little... Rather than read for hours and still be lost, give him a simple example. bind pub - !notice pub_sendmeanotice proc pub_sendmeanotice {nick uhost handle chan args} { putserv "NOTICE $nick :This is a notice!" } bind pubm - !yellatme pub_yellatme proc pub_...
by pitbull
Sat Oct 27, 2007 8:02 am
Forum: Scripting Help
Topic: URL logging
Replies: 4
Views: 2884

ok let me clear some things up. The code you saw is mine, I added it into a script that grabs the url title of a url posted to a chan. It had url logging capabilities which work fine; however, it outputted the urls to an eggdrop log file. I want the URL's to be visible on a website, so I came up wit...
by pitbull
Fri Oct 26, 2007 8:25 pm
Forum: Scripting Help
Topic: URL logging
Replies: 4
Views: 2884

URL logging

Hello, I have modified the URL title script to log URL's posted to a chan and output it to a html file. It works sometimes, it will log a few links, but then for some strange reason it will overwrite the whole file with a blank file, and start over.. It usually will log 3-4 urls before restarting.. ...
by pitbull
Fri Aug 17, 2007 3:00 pm
Forum: Scripting Help
Topic: HTTP choking on ^ character in URL
Replies: 4
Views: 3772

Thanks, however now I get the error [13:55] Tcl error [pub:quote]: char map list unbalanced I don't understand the charmap thing to debug it myself :? Edit: Well after much studying of the charmap var, I realized there was a space missing in front of the | char. Also, I removed the remapping of the ...
by pitbull
Fri Aug 17, 2007 1:12 pm
Forum: Scripting Help
Topic: HTTP choking on ^ character in URL
Replies: 4
Views: 3772

HTTP choking on ^ character in URL

I am modifying a script that retrieves stock quotes from yahoo finance. It works for most symbols, such as DJI. however, some require a ^ infront of the stock, like ^IXIC . Eggdrop spits out an error when that symbol is used: [11:49] Tcl error [pub:quote]: Illegal characters in URL path This is the ...
by pitbull
Wed Aug 15, 2007 6:49 pm
Forum: Scripting Help
Topic: Need help with rss reader. thanks
Replies: 3
Views: 2718

thats not a problem with your script, it's the RSS feed you are trying to view is trying to use compression to send the data, however the TCL script doesn't support it.. easiest way to fix, find a new RSS feed to use

sorry :(
by pitbull
Wed Aug 15, 2007 4:18 pm
Forum: Eggdrop Help
Topic: Pinging Out Problem
Replies: 9
Views: 4393

There were no Timer drift lines in the log file... Any other ideas anyone?
by pitbull
Wed Aug 15, 2007 10:31 am
Forum: Eggdrop Help
Topic: Pinging Out Problem
Replies: 9
Views: 4393

I don't have access to the logs, but I'll mention this.. What does it mean if it deos have this?
by pitbull
Wed Aug 15, 2007 10:02 am
Forum: Eggdrop Help
Topic: One Eggdrop Bot and more than one channels
Replies: 2
Views: 2441

It seems what you did was you edited the config file, to add another channel, and then you ./eggdrop MyBot.conf to start it again.. If you type "ps x" at the shell prompt, (without the quotes) you will see something similar to the following: [peakoil@peakoilchat eggdrop]$ ps x PID TTY STAT...
by pitbull
Wed Aug 15, 2007 9:52 am
Forum: Eggdrop Help
Topic: Pinging Out Problem
Replies: 9
Views: 4393

A friend of mine is having a similar issue with his bot. The bot (v. 1.6.18 ) is running on a home server, I believe it is connected via cable-modem. The server is running Ubuntu. The bot continually pings out (And the timeout is always 260 seconds). The bot times out at least 10-15 times per day.:s...
by pitbull
Mon Aug 13, 2007 1:56 am
Forum: Script Requests
Topic: Request: Script to get Crude oil & Precious metal spot p
Replies: 2
Views: 2711

Thanks for your help. I managed to modify another script to get the metal prices using a loop. I couldn't get it to work for the oil prices, however, with your regexp example, I was able to modify my metals tcl and it almost worked. It was only picking up 3 variables with that expression, so I modif...
by pitbull
Sun Aug 12, 2007 12:25 pm
Forum: Script Requests
Topic: Request: Script to get Crude oil & Precious metal spot p
Replies: 2
Views: 2711

Request: Script to get Crude oil & Precious metal spot p

Hello all, I was hoping someone could help me out and create a script that would retrieve the current Crude oil prices and precious metals. I tried writing a metals one myself, but I lack the knowledge to write the hard part. Here is what I tried: bind pubm - !metals get_metals proc get_metals {nick...