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.

botnetops not working what am i doing wrong ?

Old posts that have not been replied to for several years.
Locked
O
Ofloo
Owner
Posts: 953
Joined: Tue May 13, 2003 1:37 am
Location: Belguim
Contact:

botnetops not working what am i doing wrong ?

Post by Ofloo »

I get this ???
[23:04] GetOps: OMEGA requested ops on #eggy. Ident not recognized: OMEGA!~OMEGA@hide-192CF0B3.adsl.skynet.be.
settings:
# botnetop.tcl settings
set nb_component(botnetop) 1
set bop_delay 10
set bop_maxreq 10
set bop_modeop 0
set bop_linkop 1
set bop_icheck 0
set bop_hcheck 0
set bop_osync 0
set bop_addhost 0
set bop_log 0
XplaiN but think of me as stupid
User avatar
z_one
Master
Posts: 269
Joined: Mon Jan 14, 2002 8:00 pm
Location: Canada

Post by z_one »

Ofloo wrote
Ident not recognized: OMEGA!~OMEGA@hide-192CF0B3.adsl.skynet.be.
Try using .+host on the opped bot to add the correct mask of the bot requesting the op.

If the mask OMEGA!~OMEGA@hide-192CF0B3.adsl.skynet.be is already added and it still doesn't work then replace it with OMEGA!*OMEGA@hide-192CF0B3.adsl.skynet.be (with a * not a ~)
O
Ofloo
Owner
Posts: 953
Joined: Tue May 13, 2003 1:37 am
Location: Belguim
Contact:

Post by Ofloo »

i know if i add the host it will op but i want to op bots on link and if they got flag o .. ? not true host cause it dynamic ip and there lots of those bots i can't update em all ..? i tought i turend it off (host check)

see "set bop_hcheck 0"

so if i turned it off why is it still checking ..?
XplaiN but think of me as stupid
User avatar
z_one
Master
Posts: 269
Joined: Mon Jan 14, 2002 8:00 pm
Location: Canada

Post by z_one »

Ofloo wrote:
i want to op bots on link and if they got flag o
In the partyline of the opped bot type .channel #channel
where #channel is the channel name where both bots are.

You should get a listing with the following header:
NICKNAME HANDLE JOIN IDLE USER@HOST

Look for the nickname of the bot requesting to be opped. Does it have a handle or do you simply see a star * ? If you see a * then the bot that is opped does not recognize the other and simply won't op it since it has no credentials (such as +o flag).
User avatar
slennox
Owner
Posts: 593
Joined: Sat Sep 22, 2001 8:00 pm
Contact:

Re: botnetops not working what am i doing wrong ?

Post by slennox »

Ofloo wrote:I get this ???
You posted a GetOps error, then you posted your botnetop.tcl settings.

They are different scripts (which probably should not be loaded simultaneously) :)
O
Ofloo
Owner
Posts: 953
Joined: Tue May 13, 2003 1:37 am
Location: Belguim
Contact:

Post by Ofloo »

what the hell are people talking about ?? oh well i wrote a script that updates my hosts untill someone can xplain it to me and finds an easyerway or untill my stupid brain finaly gets what ur saying ;)

Code: Select all

bind join - * join:pub

proc join:pub {nick uhost handle chan} {
global botnick
  putlog "user $nick joined $chan"
  if {[matchattr $botnick F] == 1} {
    if {[validuser $nick] == 1} {
      foreach hostlist [split [getuser $nick hosts] " "] {
        set clearhost [delhost $nick $hostlist]
      }      
      if {$clearhost == 1} {
        putlog "Succesfull deleted users host."
      } else {
        putlog "Failed deleting users hosts."
      }
      set host [getchanhost $nick]
      if {[matchattr $nick n] == 1} {
        setuser $nick hosts "-telnet!*@*"
      }
      setuser $nick hosts "*!*@[lindex [split $host @] 1]"
      save
      putlog "Users host is been set to [lindex [split $host @] 1]"
    } else {
      putlog "No stuch user in userlist"
    }
  } else {
    putlog "This option is only for hub bots."
  }
}
XplaiN but think of me as stupid
p
ppslim
Revered One
Posts: 3914
Joined: Sun Sep 23, 2001 8:00 pm
Location: Liverpool, England

Post by ppslim »

It is simple, you are asking a question about botnetops, when your error message posted above clearly states it is a error message from the script getops.
O
Ofloo
Owner
Posts: 953
Joined: Tue May 13, 2003 1:37 am
Location: Belguim
Contact:

Post by Ofloo »

hmm i gues could be ? thats what i tought i wasn't sur tho but getops isn't opping i suppose its botnetops and if i set botnetops to not to check hosts it shouldn't do that also botnetops is working to gether with getops so it depends on that, as in it can not work with getops so if the settings in the botnetops script do not work then its not getops but botnetops .. ?

maybe i understand wrong so .. that is what i was asking am i doinging something wrong yes i am cause its not working i know but what i showed the settings of botnetops and i showed the error ?? so what is wrong it shouldn't host check if i understood the netbots setup page, hcheck =0 hostcheck = 0 i think thats host check as in getchanhost .. ? so if it shouldn't check that how come its showing errors about it .. ?
XplaiN but think of me as stupid
O
Ofloo
Owner
Posts: 953
Joined: Tue May 13, 2003 1:37 am
Location: Belguim
Contact:

Post by Ofloo »

i can't see a way arround it even tho getops is complaining why isn't botnetops.tcl of netbots opping .. ?either way if they don't work together, then botopnets isn't working cause getops is showing an error so if getops is showing errors and botnetops isn't showing anything and is not responding its not working at all even tho its marked to work .. basicly its all the same my bots are not getting ops thats the point i get that error and botnetops should work so .. what am i doing wrong yes i loaded the module .. yes ive played arround yes ive read the manual serveral times .. ive tryed oneops, secureops, getops, netops, .. all the ops scripts i could find and they all seem to fail in a way most of them fail on the host but as they should cause they check it as they discribe in there script so there working properly

but botnetops shouldn't check it at all
bop_hcheck (default: 1)
This option performs a hostmask check over the botnet and should normally be enabled. If botnetop.tcl isn't working properly on a network with obscured hostnames (e.g. +x user mode), try disabling this option.

Valid settings: 1 to enable, 0 to disable.
XplaiN but think of me as stupid
Locked