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.

abusing desync

Old posts that have not been replied to for several years.
Locked
G
GouroB
Voice
Posts: 29
Joined: Mon Jan 17, 2005 3:53 pm
Contact:

abusing desync

Post by GouroB »

The problem is my eggdrop deop's and kicks ppls who sets op himself . as admin's/ircop's can them self @ ( op ) without having @ ( Op ) . in #channel ... so when ever some one do this the eggdrop deop's & kicks him . lemme paste the kick msg ..
* You were kicked from #channel by Eggdrop (Abusing desync)
i tryied many things in conf file but still this mode is not being disable ... can any one help ? to make it more clear i am pasting the channel set part of my eggdrop's configuration file .
set global-chanset {
-autoop -autovoice
-bitch +cycle
+dontkickops +dynamicbans
+dynamicexempts +dynamicinvites
-enforcebans +greet
-inactive -nodesynch
-protectfriends -protectops
-revenge -revengebot
-secret -seen
+shared +statuslog
+userbans +userexempts
+userinvites -protecthalfops
-autohalfop -nodesynch
}
channel add #channel {
chanmode ""
idle-kick 0
stopnethack-mode 0
revenge-mode 0
ban-time 120
flood-chan 0:0
flood-deop 3:10
flood-kick 0:0
flood-join 4:30
flood-ctcp 3:60
flood-nick 5:60
}
channel set #channel -enforcebans -dynamicbans +userbans -dynamicexempts
channel set #channel -userexempts -dynamicinvites +userinvites -protectops
channel set #channel +protectfriends +statuslog -revenge -protecthalfops
channel set #channel -revengebot +dontkickops +autovoice -autoop -autohalfop
channel set #channel -bitch -secret -shared +greet +cycle -nodesynch
http://www.Shunno.co.uk
Get FREE hosting, windows or Linux VPS unix Shells or get your own website in minutes.
www.BanGlaCafe.com/chat.htm
Meet your local singles, chat with friends or just talk to people all over the globe
User avatar
]Kami[
Owner
Posts: 590
Joined: Thu Jul 24, 2003 2:59 pm
Location: Slovenia
Contact:

Post by ]Kami[ »

.chanset #channel +nodesynch should do the trick... Btw watch about topic title...
G
GouroB
Voice
Posts: 29
Joined: Mon Jan 17, 2005 3:53 pm
Contact:

Post by GouroB »

.chanset #channel +nodesynch should do the trick... Btw watch about topic title...
umm as i am newb ... ma dcc chat & telnet aint working yet .. i will work one them later ... but for now isnt there any way i could do this in config file ?
http://www.Shunno.co.uk
Get FREE hosting, windows or Linux VPS unix Shells or get your own website in minutes.
www.BanGlaCafe.com/chat.htm
Meet your local singles, chat with friends or just talk to people all over the globe
User avatar
Sir_Fz
Revered One
Posts: 3794
Joined: Sun Apr 27, 2003 3:10 pm
Location: Lebanon
Contact:

Post by Sir_Fz »

set global-chanset {
-autoop -autovoice
-bitch +cycle
+dontkickops +dynamicbans
+dynamicexempts +dynamicinvites
-enforcebans +greet
-inactive -nodesynch
-protectfriends -protectops
-revenge -revengebot
-secret -seen
+shared +statuslog
+userbans +userexempts
+userinvites -protecthalfops
-autohalfop -nodesynch
}
User avatar
De Kus
Revered One
Posts: 1361
Joined: Sun Dec 15, 2002 11:41 am
Location: Germany

Post by De Kus »

you need to kill your bot and edit the .chan file manuelly
De Kus
StarZ|De_Kus, De_Kus or DeKus on IRC
Copyright © 2005-2009 by De Kus - published under The MIT License
Love hurts, love strengthens...
User avatar
caesar
Mint Rubber
Posts: 3778
Joined: Sun Oct 14, 2001 8:00 pm
Location: Mint Factory

Post by caesar »

Or use something like this:

Code: Select all

bind pub n !chanset my:pub:chanset

proc my:pub:chanset {n uh h c t} {
  set f [lindex [split $t] 0] ; set m [lindex [split $f ""] 0]
  if {$t != "" && $m == "+" || $m == "-"} {
    catch {channel get $c [set f [lindex [split $f $m] 1]]} err
    switch -- $err {
      "0" {
        if {$m == "-"} {
          putserv "NOTICE $n :$f flag is allready disabled for $c channel."
        }
        if {$m == "+"} {
          putserv "NOTICE $n :$f flag will now be enabled for $c channel."
          channel set $c +$f
        }
      }
      "1" {
        if {$m == "+"} {
          putserv "NOTICE $n :$f flag is allready enabled for $c channel."
        }
        if {$m == "-"} {
          putserv "NOTICE $n :$f flag will now be disabled for $c channel."
          channel set $c -$f
        }
      }
      default {
        putserv "NOTICE $n :Error, $f flag is a [string tolower $err]"
      }
    }
    } else {
    putserv "NOTICE $n :Usage: !chanset +/-flag"
  }
}
Once the game is over, the king and the pawn go back in the same box.
User avatar
awyeah
Revered One
Posts: 1580
Joined: Mon Apr 26, 2004 2:37 am
Location: Switzerland
Contact:

Post by awyeah »

I'd say enabling +nodesynch would be the best, heh. :shock:
·­awyeah·

==================================
Facebook: jawad@idsia.ch (Jay Dee)
PS: Guys, I don't accept script helps or requests personally anymore.
==================================
Locked