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 ghostscript
Sun Apr 09, 2006 6:24 pm
Forum: Eggdrop Help
Topic: Data loss and or Latency
Replies: 5
Views: 6296

Woot

Alright, I will do that and relay the findings here, will be posted before 12PM PST. Thank you.
by ghostscript
Sun Apr 09, 2006 2:46 pm
Forum: Eggdrop Help
Topic: Data loss and or Latency
Replies: 5
Views: 6296

Please Read

In the current version we have no "after 3000" Those delays were intentional and were removed before testing the current problem - it isn't them since they are no longer there, Thanks.
by ghostscript
Sun Apr 09, 2006 12:31 pm
Forum: Eggdrop Help
Topic: Data loss and or Latency
Replies: 5
Views: 6296

Thank you ... but

While I understand the logic of your post, I do not think that is the issue. Below is a sample of one of the bots I mentioned. As you can see it uses putquicks - we have also tried those other variations you suggested with no change. We believe the issue resides within some settings within the serve...
by ghostscript
Sat Apr 08, 2006 1:42 pm
Forum: Eggdrop Help
Topic: Data loss and or Latency
Replies: 5
Views: 6296

Data loss and or Latency

Hello, we are running Eggdrop 1.6.17 and IRCd Hybrid 6. We have two bots total. One bot picks up binds in the channel, then starts a query between the user that initiated the bind and the second bot. The second bot, who is now in a PRIVMSG with the user, responds to user input and outputs a text res...
by ghostscript
Mon Mar 06, 2006 10:32 pm
Forum: Scripting Help
Topic: help with switch commmand
Replies: 2
Views: 4864

help with switch commmand

Hi guys, I am running eggdrop 1.6.17; I am trying to make my bot respond to comments made in private msg between the bot and user. We are having trouble getting the bot to respond dynamically to user input. Here is a sample of my code; any suggestions would be greatly appreciated. bind pub - !taketh...
by ghostscript
Wed Feb 15, 2006 2:27 pm
Forum: Scripting Help
Topic: Argument Separation
Replies: 4
Views: 6481

Really, Thanks!

That worked wonders. Thank you very much. ~bows~
by ghostscript
Tue Feb 14, 2006 3:42 pm
Forum: Scripting Help
Topic: Argument Separation
Replies: 4
Views: 6481

Tried changing to using lindex. Looks like it should work but i get empty returns now. Is there something I'm doing wrong here?

Code: Select all

        set tfirst [lindex $args 0]
        set tsecond [lindex $args 1]
by ghostscript
Mon Feb 13, 2006 7:29 pm
Forum: Scripting Help
Topic: Argument Separation
Replies: 4
Views: 6481

Argument Separation

I am running Eggdrop 1.4 and am trying to design a simple script that takes the input "!taken abcde edcba" and serparates it into varibles equal abcde and edcba respectively. set $i [string first " " $args 0] set $j [string length $args] set $tfirst [string range $args 0 [$i-1]] ...
by ghostscript
Wed Feb 08, 2006 7:05 pm
Forum: Scripting Help
Topic: PRIVMSG,Query,Msg all dump into channel
Replies: 2
Views: 5907

Thanks! It seemed to be a specific client error, For any furture people who have issues, make sure they aren't using "ircle" - Thanks again
by ghostscript
Wed Feb 08, 2006 6:17 pm
Forum: Scripting Help
Topic: PRIVMSG,Query,Msg all dump into channel
Replies: 2
Views: 5907

PRIVMSG,Query,Msg all dump into channel

I am running Eggdrop 1.4 and am trying to design a simple script that when a person executes "!iMac 543456" or another number following iMac they bot will open a new window to the client with the response "$nick requests consult for #" where # represents the user input. Everythin...