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.

Why does this not work?

Old posts that have not been replied to for several years.
Locked
S
Sloop
Halfop
Posts: 44
Joined: Tue Jul 12, 2005 7:04 pm

Why does this not work?

Post by Sloop »

Hi @ll,

I installed this script here (Auto-REOp):

http://www.egghelp.org/cgi-bin/tcl_arch ... oad&id=974

But when a normal Operator does kick my bot, or deop it, or kickban it... then the bot gains Ops back with ChanServ but the punishment seems not to work. In my log file of the bot (eggdrop.log) I can see lines like that:

[05:28] Punishing LittleMerlin (deopped securitybot on #mychan)
[05:35] Punishing LittleMerlin (kicked securitybot off #mychan)

That would mean, that my script realized it correctly, and he writes also the log file that he punishes him, but nothing happened! The bot did neither deop him, nor kick him.

Why?? How can I check that excalty, how do I trace this problem?

I dunno what to do. Can someone help?[/img][/url]
User avatar
Sir_Fz
Revered One
Posts: 3794
Joined: Sun Apr 27, 2003 3:10 pm
Location: Lebanon
Contact:

Post by Sir_Fz »

It's probably issuing the deop and kick commands before it regains ops. Try another script.
S
Sloop
Halfop
Posts: 44
Joined: Tue Jul 12, 2005 7:04 pm

Post by Sloop »

Oh damn. Hmm... can u propose another one to me?? What's another good script therefore?
User avatar
Sir_Fz
Revered One
Posts: 3794
Joined: Sun Apr 27, 2003 3:10 pm
Location: Lebanon
Contact:

Post by Sir_Fz »

Sloop wrote:Oh damn. Hmm... can u propose another one to me?? What's another good script therefore?
Search here or here.
User avatar
YooHoo
Owner
Posts: 939
Joined: Thu Feb 13, 2003 10:07 pm
Location: Redwood Coast

Post by YooHoo »

Sloop wrote:Oh damn. Hmm... can u propose another one to me?? What's another good script therefore?
slennox's superbitch.tcl, a component of the botnet script netbots is extremely effective.
8)
User avatar
awyeah
Revered One
Posts: 1580
Joined: Mon Apr 26, 2004 2:37 am
Location: Switzerland
Contact:

Post by awyeah »

Actually I made that script in my early days. The thing is if ChanServ sometimes laggs, so if it gives delayed ops to the bot the punish proc does have a timer, but chanserv gives ops after a long time and the punish proc has been already executed. Since the bot not having ops at that time cannot kick the person, however the log file writes down the user was kicked, which is a mistake and I would need to bind kick for that I guess.

What can be done is to delay the punish proc timer more or add a second delayed punish proc to check if a similar thing has happened. If the bot is not opped and wanted to punish the user, then execute another delayed proc for punishment or something similar can be done.
·­awyeah·

==================================
Facebook: jawad@idsia.ch (Jay Dee)
PS: Guys, I don't accept script helps or requests personally anymore.
==================================
User avatar
Sir_Fz
Revered One
Posts: 3794
Joined: Sun Apr 27, 2003 3:10 pm
Location: Lebanon
Contact:

Post by Sir_Fz »

Instead of using a timer, you can store the nick and host in an array and when the bot regains ops (bind mode) it'll check if nick is in chan and bankick him.
Locked