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.
Old posts that have not been replied to for several years.
t
thewizard
Post
by thewizard » Wed Aug 28, 2002 10:43 am
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 » Wed Aug 28, 2002 10:48 am
When/where does this error happen? I can't see very easily why it happens in that script.
t
thewizard
Post
by thewizard » Wed Aug 28, 2002 11:28 am
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 » Wed Aug 28, 2002 11:37 am
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 » Wed Aug 28, 2002 11:49 am
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 » Wed Aug 28, 2002 12:17 pm
Well I can't see anywhere else where bot_reqop is being called..
I must be missing something...
ppslim
Revered One
Posts: 3914 Joined: Sun Sep 23, 2001 8:00 pm
Location: Liverpool, England
Post
by ppslim » Wed Aug 28, 2002 5:27 pm
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 » Wed Aug 28, 2002 10:11 pm
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
ppslim
Revered One
Posts: 3914 Joined: Sun Sep 23, 2001 8:00 pm
Location: Liverpool, England
Post
by ppslim » Thu Aug 29, 2002 4:46 am
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 » Thu Aug 29, 2002 9:04 pm
nope ive changed nothing, im using netbots.tcl so that has all its lil addons like botnetops etc, urm and joinstat
ppslim
Revered One
Posts: 3914 Joined: Sun Sep 23, 2001 8:00 pm
Location: Liverpool, England
Post
by ppslim » Fri Aug 30, 2002 5:15 am
That is why you are having trouble then.
You should unload the botnetop netbots component.
This is incompatible with the script you have.