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

by FTL25
Fri Nov 18, 2005 1:47 am
Forum: Scripting Help
Topic: Quick REGEXP Help!
Replies: 10
Views: 17521

You're right, its not the easiest path, but its what I like to do! I'm a major right now in computer science. Only took the COBOL and advanced COBOL courses so far, but C++ is coming up either this Spring or next Fall semester, and definitely VB this Spring. I tried the SAMs teach yourself C++ a cou...
by FTL25
Thu Nov 17, 2005 8:08 am
Forum: Scripting Help
Topic: Quick REGEXP Help!
Replies: 10
Views: 17521

Okay... I've looked around and havent found too much on regexp. From the "Enhancing Your Eggdrop" Page... If you have some experience writing Tcl scripts and would like to write your own for Eggdrop, have a read through the Beginners Guide to TCL, and be sure to check out tcl-commands.doc ...
by FTL25
Thu Nov 17, 2005 12:22 am
Forum: Scripting Help
Topic: Quick REGEXP Help!
Replies: 10
Views: 17521

Okay, this is the part of the code I'm looking at from the URL I'm getting the news from: <?xml version="1.0" encoding="iso-8859-1" ?> - <rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/&...
by FTL25
Wed Nov 16, 2005 11:32 am
Forum: Scripting Help
Topic: Quick REGEXP Help!
Replies: 10
Views: 17521

demond, what part of your rssnews code gets you to the right part of the XLM code? because of all the repeated patterns, you cant just use the first <title> for example... you got to make sure you're at the right spot to get the text you want. This is the part I still cant figure out!
by FTL25
Tue Nov 15, 2005 11:26 pm
Forum: Scripting Help
Topic: Quick REGEXP Help!
Replies: 10
Views: 17521

Thanks demond. I've look at it more than once. Starting to understand it more as I learn more :) I've replaced regexp {<title>(.*)</title>} $body - title regexp {<pubDate>(.*)</pubDate>} $body - date regexp {<description>(.*)</description>} $body - desc regexp {<link>(.*)</link>} $body - link with r...
by FTL25
Tue Nov 15, 2005 10:48 pm
Forum: Scripting Help
Topic: Quick REGEXP Help!
Replies: 10
Views: 17521

Maybe I should have been more clear... I'm trying to write my own rss news feed bot, from this site. What I want to do is have the bot output The Title The Date The Description The Link Of the most recent news feed. It looks like that will always be: The 3rd "<title>" on that page for the ...
by FTL25
Tue Nov 15, 2005 8:34 pm
Forum: Scripting Help
Topic: Quick REGEXP Help!
Replies: 10
Views: 17521

Quick REGEXP Help!

I have the following line of XML I'm reading from: <pubDate>Tue, 15 Nov 2005 13:44:46 PST</pubDate> In the code I use: regexp {<pubDate>(.*)</pubDate>} $body - date to get it, and... puthelp "PRIVMSG $channel : HeadLine: $served" to output it. As output, I expect to get: [7:25pm]«@ BOTNICK...
by FTL25
Tue Nov 15, 2005 4:42 pm
Forum: Shell & Bouncer Help
Topic: I need a few "mods" for my Psybnc
Replies: 5
Views: 14954

I need a few "mods" for my Psybnc

Hello all. I'm running my psybnc using multi networking. I need to have my psybnc do 3 things: 1. set /mode myNick +h 2. /msg ds~NickServ IDENTIFY myPass 3. /msg aa~NickServ IDENTIFY myPass This way, if my psybnc disconnects, or gets disconnected from any of the servers, it will reauth on the ones i...
by FTL25
Tue Nov 15, 2005 4:22 pm
Forum: Eggdrop Help
Topic: Problems getting auto op from Eggdrops
Replies: 4
Views: 11417

Okay, so I did that command and it said:

[3:21pm] < EGGDROP > Someone already exists by that name.

so I tried:

.-bot MyNick

and it said:

[3:21pm] < EGGDROP > You can't remove a permanent bot owner!

Edit: Nevermind, I got it... Thanks
by FTL25
Tue Nov 15, 2005 3:44 pm
Forum: Eggdrop Help
Topic: Problems getting auto op from Eggdrops
Replies: 4
Views: 11417

Funny How could it auto op you if it doesn't know your host? Probably beacuse when I use .chanset #channel +autoop command, it adds it under the host I currently had at that time. After I reconnect to the IRC server that host is different, and I have to use the command all over again, which is what...
by FTL25
Tue Nov 15, 2005 2:34 pm
Forum: Eggdrop Help
Topic: Problems getting auto op from Eggdrops
Replies: 4
Views: 11417

Problems getting auto op from Eggdrops

I used:

.chanset #channel +autoop

on my bots. They op me on join like they're supposed to, and all works fine... until my hostmask changes (which it changes everytime i reconnect to this IRC).

What else can I do?

Thanks!
by FTL25
Tue Nov 15, 2005 9:37 am
Forum: Eggdrop Help
Topic: Linking 2 Eggdrops: Problem with net: eof!(read) socket 9
Replies: 4
Views: 12070

Awesome!

Between netbots.tcl and botnetop.tcl I got everything working just the way I wanted them to! Now my channels can stay +i always...

Lets just hope they all dont go down at once! :lol:

Thanks for the guidance Alchera.
by FTL25
Tue Nov 15, 2005 12:57 am
Forum: Scripting Help
Topic: Simple, but yet an error!
Replies: 2
Views: 7748

From _SunMar_ 's tut @ SUNiNET: The syntax of the proc command is proc <name> { <parameters> } { <body> }. The <parameters> are the variables the procedure must put its received parameters in. You need to specify a variable for each parameter here that will be sent to the procedure. All the variable...
by FTL25
Tue Nov 15, 2005 12:28 am
Forum: Eggdrop Help
Topic: Linking 2 Eggdrops: Problem with net: eof!(read) socket 9
Replies: 4
Views: 12070

Well I got it to work by switching the bot I was using as the hub to the leaf, and it worked fine by using the other one as the hub instead :? Now how do I get them to OP each other? For example... When I restart one, after it comes back online they will auto relink like they're supposed to (thank G...
by FTL25
Mon Nov 14, 2005 10:52 pm
Forum: Eggdrop Help
Topic: Quick Question about Channel Modes in .conf file
Replies: 2
Views: 8012

Just wanted to make sure, Thanks :D