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.

TheWizard Needs j00

Old posts that have not been replied to for several years.
Locked
t
thewizard

TheWizard Needs j00

Post by thewizard »

Just leeched the botnetop/getops hybrid tcl all works ok APART from an error in party line

Tcl error [bop_reqop]: called "bop_reqop" with too many arguments

i cant paste this on here so ill have to make a link

http://www.ripsworld.serverpro3.com/botops.tcl.txt

If anyone can provide assistance (Looks at pap) id be uberhappy


Thanx Peepls
I
Iridium

Post by Iridium »

When/where does this error happen? I can't see very easily why it happens in that script.
t
thewizard

Post by thewizard »

hi it pops up in the partyline on a leaf bot when it is deop'd
**In the channel**
[16:28:48] *** ripmyster sets mode: -o evolved
**partyline**
[16:28] Tcl error [bop_reqop]: called "bop_reqop" with too many arguments
I
Iridium

Post by Iridium »

hmm. still can't really see what is going on.

Try changing:

Code: Select all

proc bop_linkop {bot via} {
	global botnick
	putloglev 5 * "BotOps (debug): proc bop_linkop $bot $via"
	foreach chan [string tolower [channels]] {
		if {![onchan $botnick $chan]} {continue}
		if {[botisop $chan]} {continue}
		bop_reqop $chan
	}
}

to

Code: Select all

proc bop_linkop {bot via} {
	global botnick
	putloglev 5 * "BotOps (debug): proc bop_linkop $bot $via"
	foreach chan [string tolower [channels]] {
		if {![onchan $botnick $chan]} {continue}
		if {[botisop $chan]} {continue}
		putlog "Testing - \"$chan\""
		bop_reqop $chan
	}
}
On the partyline it should say "Testing - \"<something>\""

tell us what that something is, and it might shed some light :)
if it isn't that, then this is going to be quite difficult because I can't see anywhere else where that proc is being called
t
thewizard

Post by thewizard »

ok i made that change but its no the linkop thats the problem its bop_reqop. so the error is still there
I
Iridium

Post by Iridium »

Well I can't see anywhere else where bot_reqop is being called..

I must be missing something...
p
ppslim
Revered One
Posts: 3914
Joined: Sun Sep 23, 2001 8:00 pm
Location: Liverpool, England

Post by ppslim »

Using a perminant global owner login, do a ".chaninfo #channel" where channel is the channel at issue.

Please paste the output (chaning the channel name if need be).

I get the feeling it may be due to some previous script.
t
thewizard

Post by thewizard »

right i made em join another chan where they couldnt get ops

[03:09:20] <ripmyster> .chaninfo #gayness1
[03:09:20] <dodge> Settings for dynamic channel #gayness1
[03:09:21] <dodge> Protect modes (chanmode): +tn
[03:09:21] <dodge> Idle Kick after (idle-kick): DON'T!
[03:09:21] <dodge> stopnethack: DON'T!
[03:09:21] <dodge> aop-delay: 5:30
[03:09:21] <dodge> revenge-mode: 1
[03:09:21] <dodge> Other modes:
[03:09:21] <dodge> -inactive +statuslog -secret +shared
[03:09:21] <dodge> +greet -seen +cycle +dontkickops
[03:09:21] <dodge> +protectops -protectfriends -revenge -revengebot
[03:09:21] <dodge> -bitch -autoop -autovoice -nodesynch
[03:09:21] <dodge> -enforcebans +dynamicbans +userbans
[03:09:21] <dodge> +dynamicexempts +userexempts +dynamicinvites +userinvites
[03:09:21] <dodge> User defined channel flags:
[03:09:21] <dodge> -joinstat
[03:09:21] <dodge> flood settings: chan ctcp join kick deop nick
[03:09:21] <dodge> number: 10 5 5 3 3 0
[03:09:21] <dodge> time : 60 60 60 10 10 0
[03:09:21] <dodge> [22:05] #RipMyster# chaninfo #gayness1
[03:10:18] <dodge> [22:06] Tcl error [bop_reqop]: called "bop_reqop" with too many arguments
p
ppslim
Revered One
Posts: 3914
Joined: Sun Sep 23, 2001 8:00 pm
Location: Liverpool, England

Post by ppslim »

Have you changed any of the script at all? IE, removing any #'s.

Also, what other scripts are you running. This sounds like a conflict.
t
thewizard

Post by thewizard »

nope ive changed nothing, im using netbots.tcl so that has all its lil addons like botnetops etc, urm and joinstat
p
ppslim
Revered One
Posts: 3914
Joined: Sun Sep 23, 2001 8:00 pm
Location: Liverpool, England

Post by ppslim »

That is why you are having trouble then.

You should unload the botnetop netbots component.

This is incompatible with the script you have.
Locked