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.

raeky's op cookie script + botnetop

Old posts that have not been replied to for several years.
Locked
B
BiLL
Halfop
Posts: 78
Joined: Wed Sep 26, 2001 8:00 pm
Location: Germany

Post by BiLL »

Heyya,

anybody is running raeky's op cookie script? Anybody know's if there is any other cookie script out?

I want to use raeky's op cookie script in my botnet, but I need the up2date botnetop.tcl fixed to work with raeky's op cookie script. The botnet.op tcl on raeky's site is out of date :sad:.

Anybody got the NEW botnetop.TCL from netbots (4.05) modified for raeky's op cookie script?

Thanks bye.
User avatar
slennox
Owner
Posts: 593
Joined: Sat Sep 22, 2001 8:00 pm
Contact:

Post by slennox »

I think the changes required to the script to make it work with cookieop are minor. Find the following section in botnetop.tcl:

Code: Select all

  if {$bop_osync} {
    if {$numversion < 1040000} {
      pushmode $chan +o $fromnick
    } else {
      putquick "MODE $chan +o $fromnick"
    }
  } else {
    if {[isop $fromnick $chan]} {return 0}
    pushmode $chan +o $fromnick
  }
And change it to:

Code: Select all

  if {$bop_osync} {
    cop_op $chan $fromnick
  } else {
    if {[isop $fromnick $chan]} {return 0}
    cop_op $chan $fromnick
  }
Let me know if it works.

<font size=-1>[ This Message was edited by: slennox on 2002-03-01 18:11 ]</font>
B
BiLL
Halfop
Posts: 78
Joined: Wed Sep 26, 2001 8:00 pm
Location: Germany

Post by BiLL »

Yes thats it.

Everything works fine thanks :smile:
B
BiLL
Halfop
Posts: 78
Joined: Wed Sep 26, 2001 8:00 pm
Location: Germany

Post by BiLL »

I got another trouble right now...

I got the same cookieop.tcl on every bot also the same botnetop.tcl

weired is now that my bots try to op each other, but the cookieop is INVALIDE for everyone. I dunno why, every bot has +cookieop for that chan and the SAME cookieop.tcl so the key must be the same that means the op is valide.

I dont know what to do, damn :sad:
B
BiLL
Halfop
Posts: 78
Joined: Wed Sep 26, 2001 8:00 pm
Location: Germany

Post by BiLL »

lol how stupid!

if you enable the debug mode by using:
set cop_debug 1
and the "all display mode":
set cop_display 2

then the cookie script works right - hmm :grin:
n
nomad

Post by nomad »

Where can I find Raeky's cookieop, his site is down.
Does anyone send it to me?

Tnx in advance, n0mad.
r
romprod
Halfop
Posts: 49
Joined: Fri Oct 19, 2001 8:00 pm

Post by romprod »

Use ".netchanset #channel +cookieop" insted of ".chanset........" just this second relised the problem :)
Locked