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

by Sarteck
Tue Sep 13, 2011 2:00 pm
Forum: Eggdrop Help
Topic: Bot not logging itself on the Channel log; how to change?
Replies: 1
Views: 2381

Bot not logging itself on the Channel log; how to change?

My bot is set up to log "jkp" (joins/etc., kicks/etc., and public text in the channel) for the channel, but it does not seem to log itself, nor does it log commands for it posted to that channel. I imagine I could change the latter simply by changing "jkp" to "cjkp", bu...
by Sarteck
Sat Aug 14, 2010 7:33 am
Forum: Eggdrop Help
Topic: Best way to get Nickserv Identification Status of users
Replies: 10
Views: 8433

Just a follow up, here. THe "bug" which made it seem as if my Bot was not sending every line of the split string; well, it turned out to be that it just would not repeat the same message twice or more in a row. So if one of my users got awarded 2 Han, then the same user got awarded the sam...
by Sarteck
Wed Aug 11, 2010 5:41 pm
Forum: Eggdrop Help
Topic: Best way to get Nickserv Identification Status of users
Replies: 10
Views: 8433

See, setRandomHan gives a random amount of "Hansatsu" (a "currency" on my forum) to a specified amount of users. CBUserData gets the result from the CBUsers function. THat function calls a PHP page on my server through POST. The PHP Script sends back a string response (I make it ...
by Sarteck
Wed Aug 11, 2010 6:19 am
Forum: Eggdrop Help
Topic: Best way to get Nickserv Identification Status of users
Replies: 10
Views: 8433

Hey, Willy, thanks for that--I was assuming that chanlist would return all the names on a specified channel the bot is on--I didn't realize that it only takes into account those with an account on the bot. Well, if that's the case, I'll have to go about it with (as you said) using the raw bind. Ah.....
by Sarteck
Tue Aug 10, 2010 4:53 am
Forum: Eggdrop Help
Topic: Best way to get Nickserv Identification Status of users
Replies: 10
Views: 8433

Quadruple posting ftw! :D No, I'm posting to tell ya I think I've got it figured out now, after a bit of digging. Although I cannot find a way to make eggdrop listen for the 353 line returned from the NAMES command, I don't need it. chanlist <channel> [flags[&chanflags]] Description: flags are a...
by Sarteck
Tue Aug 10, 2010 12:49 am
Forum: Eggdrop Help
Topic: Best way to get Nickserv Identification Status of users
Replies: 10
Views: 8433

:facepalms:

Sorry, Mods; please move this to the Scripting Help forum at your leisure. :(
http://forum.egghelp.org/viewforum.php?f=2

My bad.
by Sarteck
Tue Aug 10, 2010 12:22 am
Forum: Eggdrop Help
Topic: Best way to get Nickserv Identification Status of users
Replies: 10
Views: 8433

The PHP snippet

/// RESPONDS to Notices, adds/changes nicks to master table. public function check_incoming($line, $args) { if (strtolower($line['fromNick']) != 'nickserv') {return;} if ($args['cmd'] != 'status') {return;} if ($args['arg2'] <= -1) {return;} if ($args['arg2'] >= 4) {return;} if (array_key_exists('a...
by Sarteck
Tue Aug 10, 2010 12:21 am
Forum: Eggdrop Help
Topic: Best way to get Nickserv Identification Status of users
Replies: 10
Views: 8433

Best way to get Nickserv Identification Status of users

Until recently, I've been running a PHP-IRC bot, because PHP is the language I'm most comfortable with. Unfortunately, it's just consuming too much CPU (which I was warned beforehand that it would, heh), so I'm trying to switch a lot of my functions over from PHP to Tcl, which I know next to nothing...
by Sarteck
Sun Mar 16, 2008 10:43 am
Forum: Script Requests
Topic: getting information from outside irc
Replies: 4
Views: 2478

OMG... YOu're right... >.< Here I only saw the .desc file... THank you so much, strikelight! ^_^
by Sarteck
Sun Mar 16, 2008 7:53 am
Forum: Script Requests
Topic: getting information from outside irc
Replies: 4
Views: 2478

Well, that would have been exactly what I was looking for, except for two problems. The irc2www-advanced is meant to be used with eggdrop 1.1.5 with the eb1 patch applied. I can find eggdrop 1.1.5 easily enough, but the only eb1 patch I can find is for 1.3, not 1.1.5. I tried it on my 1.6.18 (I thin...
by Sarteck
Fri Mar 14, 2008 9:17 pm
Forum: Script Requests
Topic: getting information from outside irc
Replies: 4
Views: 2478

getting information from outside irc

Dear Eggheads, I'm a complete newbie to eggdrop, and to Tcl (though I plan on learning Tcl as I go). I am trying to make my bot relay messages from a custom PHP chat I made to the IRC channel, and from the IRC channel to the PHP chat. Unfortunately, I don't know the first place to look. If someone c...