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

by jamie3
Mon Feb 07, 2005 9:00 pm
Forum: Archive
Topic: is there a way to halt further stacked pubm triggering?
Replies: 4
Views: 2466

is there a way to halt further stacked pubm triggering?

bind pub can be used to bind nonstackable triggers, and bind pubm for stackable (chainable) triggers. but i want to be able to trigger a command to halt bind pubm processing, so that i can tell eggdrop, from one of my binc pubm triggered functions, to not proceed through the rest of its chain of tri...
by jamie3
Sat Nov 27, 2004 5:22 pm
Forum: Archive
Topic: how did eggdrop get its name?
Replies: 3
Views: 1691

how did eggdrop get its name?

how did eggdrop get its name?
by jamie3
Sun Dec 28, 2003 12:15 pm
Forum: Archive
Topic: need to be able to retrigger binds
Replies: 11
Views: 4907

i've implemented the process of checking first for a pub and then only pubms if no pub matches.

the unresolved issue is that [binds] returns an alphabetized list and eggdrop *seems* to order newest binds ahead of older.
by jamie3
Thu Dec 25, 2003 2:58 am
Forum: Archive
Topic: need to be able to retrigger binds
Replies: 11
Views: 4907

one issue with reprocessing the binds manullay is that the list returned by the [binds] command is alphabetized. i'm not sure what order eggdrop parses them in normally - but this could conceivably make the manual parsing of binds occur in a different order than normal bind triggers. im also not sur...
by jamie3
Wed Dec 24, 2003 12:04 pm
Forum: Archive
Topic: need to be able to retrigger binds
Replies: 11
Views: 4907

ok, quite a few fixes and additions to the above code, but its working great - thanks for all the help here and also in #egghelp on efnet. if anyone is curious about the final script, which reroutes input and output through decrypt/crypt procedures, you're welcome to borrow the code: http://mircrypt...
by jamie3
Wed Dec 24, 2003 3:57 am
Forum: Archive
Topic: need to be able to retrigger binds
Replies: 11
Views: 4907

Here's my version of the code with comments and debugging info, based on stdragon's code. Seems to be working great - thank you so much stdragon you saved my sanity. Note the stdrag_triggerbinds function is called with the decrypted version of $text, so this function below is basically a way to send...
by jamie3
Wed Dec 24, 2003 2:04 am
Forum: Archive
Topic: need to be able to retrigger binds
Replies: 11
Views: 4907

thank you so much stdragon - this is just what i needed - something to get me started. i will report my progress, and ask if i have more questions.
by jamie3
Tue Dec 23, 2003 10:09 pm
Forum: Archive
Topic: need to be able to retrigger binds
Replies: 11
Views: 4907

thx stdragon, maybe binds does hold all the info i need - i was worried that the mask in bind pubm might be missing, but maybe its returned in the 'command' slot of the tuple. i'm a c++ programmer without much experience in tcl/eggdrop, so i'm just finding my way in the dark here. i think with a com...
by jamie3
Tue Dec 23, 2003 9:27 am
Forum: Archive
Topic: need to be able to retrigger binds
Replies: 11
Views: 4907

assuming there is no way to tell eggdrop to process binds for an abitrary constructed string/nick/chan.. i did see that there is a command for interrogating the system for all registered binds: http://tcl.powersource.cx/eggtclh09.php binds ?type/mask? Returns: a list of Tcl binds, each item in the l...
by jamie3
Tue Dec 23, 2003 8:29 am
Forum: Archive
Topic: need to be able to retrigger binds
Replies: 11
Views: 4907

need to be able to retrigger binds

hi, i have an eggdrop script that needs to decrypt incoming text, and then force the eggdrop to retrigger any appropriate binds on the now decrypted text. is there any way to do this? if not, any suggestions for an alternative way, such as interograting any registered binds programmatically and matc...