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.

Notify

Old posts that have not been replied to for several years.
Locked
J
Jag
Halfop
Posts: 90
Joined: Fri Sep 19, 2003 10:06 am

Notify

Post by Jag »

How can i add users to the notify list in my eggdrop?
and whats the command, like scripting:

Code: Select all

on *:notify
in TCL?

please? :P
p
ppslim
Revered One
Posts: 3914
Joined: Sun Sep 23, 2001 8:00 pm
Location: Liverpool, England

Post by ppslim »

There is no command at present.

You would need to use the RAW bind and capture them yourself.

Depending on what you want it to do, will depend on how you do it.
J
Jag
Halfop
Posts: 90
Joined: Fri Sep 19, 2003 10:06 am

Post by Jag »

i want a script that when one of the notify's user connect the eggdrop will send him a msg. :)
User avatar
BarkerJr
Op
Posts: 104
Joined: Sun Mar 30, 2003 1:25 am
Contact:

Post by BarkerJr »

What's a mess. You'd have to run a utimer sending ISON all the time and bind to a RAW to catch it all. Ugh!
J
Jag
Halfop
Posts: 90
Joined: Fri Sep 19, 2003 10:06 am

Post by Jag »

no.
I will do this so:

Code: Select all

bind raw - 600 proc-name
but how can i add users to the notify list? :-?
User avatar
strikelight
Owner
Posts: 708
Joined: Mon Oct 07, 2002 10:39 am
Contact:

Post by strikelight »

Jag wrote:no.
I will do this so:

Code: Select all

bind raw - 600 proc-name
but how can i add users to the notify list? :-?
notify list is a mirc client feature...
As BarkerJr Said, you will have to use a utimer sending ison requests.
J
Jag
Halfop
Posts: 90
Joined: Fri Sep 19, 2003 10:06 am

Post by Jag »

and how do i build this timer? :(
J
Jag
Halfop
Posts: 90
Joined: Fri Sep 19, 2003 10:06 am

Post by Jag »

someone please? :(
User avatar
BarkerJr
Op
Posts: 104
Joined: Sun Mar 30, 2003 1:25 am
Contact:

Post by BarkerJr »

It'd look something like:

Code: Select all

utimer 5 proc:ison
proc proc:ison {} {
  puthelp "ISON Jag"
  utimer 5 proc:ison
}
User avatar
awyeah
Revered One
Posts: 1580
Joined: Mon Apr 26, 2004 2:37 am
Location: Switzerland
Contact:

Post by awyeah »

I was wondering, what will happen if the utimer repeats itself so quickly, wouldn't the bot get excess flood for so many ison requests in a short period of time? wouldn't the bot be stressed out?

Does mIRC (the client) does this in the same way by utimers, in very short intervals of time?! because it's notifys are very accurate.
·­awyeah·

==================================
Facebook: jawad@idsia.ch (Jay Dee)
PS: Guys, I don't accept script helps or requests personally anymore.
==================================
User avatar
BarkerJr
Op
Posts: 104
Joined: Sun Mar 30, 2003 1:25 am
Contact:

Post by BarkerJr »

You can't excess flood with puthelp on most ircds :)
User avatar
awyeah
Revered One
Posts: 1580
Joined: Mon Apr 26, 2004 2:37 am
Location: Switzerland
Contact:

Post by awyeah »

Anyway then thinking, so if this is the case then. I would like it to be a bit faster. Would setting the utimer to 1, or 2 secs be okay?? Opers wouldn't kline the bot right?! Every client does an ISON request very frequently to the server. :-?
·­awyeah·

==================================
Facebook: jawad@idsia.ch (Jay Dee)
PS: Guys, I don't accept script helps or requests personally anymore.
==================================
Locked