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.

Deactivate Revenge Mode don't work +f works

Old posts that have not been replied to for several years.
Locked
C
C11

Deactivate Revenge Mode don't work +f works

Post by C11 »

Is there a way to set the +f flag to all ops with 1 command? I've deaktivated the revenge mode, ok let's say i set all to - i could :). But the bot deops all ops until they have the +f flag. Or is there another way?
p
ppslim
Revered One
Posts: 3914
Joined: Sun Sep 23, 2001 8:00 pm
Location: Liverpool, England

Post by ppslim »

You should be looking at the other flags you have set for the channel, rather than looking for a way to mass change modes.

What settings have you got for the channel (.chaninfo #channel).

There is a script available in the Tcl archive for this as well.
C
C11

Post by C11 »

These are the settings for that channel

channel add #osnabrück {
chanmode "+nt"
idle-kick 0
stopnethack-mode 0
}

channel set #osnabrück -enforcebans -dynamicbans -userbans -dynamicexempts +greet
channel set #osnabrück -userexempts -dynamicinvites -userinvites +protectops
channel set #osnabrück -protectfriends +statuslog -revenge -protecthalfops -cycle
channel set #osnabrück -revengebot +dontkickops -autovoice -autoop -autohalfop
channel set #osnabrück -bitch -secret -shared
p
ppslim
Revered One
Posts: 3914
Joined: Sun Sep 23, 2001 8:00 pm
Location: Liverpool, England

Post by ppslim »

You will need to do a ".chaninfo #channel" to display the information correctly.

This is because after changinf any settings in the config file, regarding channel settings, the original settings are stored in the channel file.

The channels file is loaded after the config file, thus over-writing the config file settings.

As such, the +revenge setting may still be activated.
C
C11

Post by C11 »

Settings for static channel #osnabr³ck:
Protect modes (chanmode): +cCtn-kim
Idle Kick after (idle-kick): DON'T!
stopnethack: DON'T!
aop-delay: 5:30
revenge-mode: 0
Other modes:
-inactive +statuslog -secret -shared
+greet -seen +cycle +dontkickops
-protectops -protectfriends -revenge -revengebot
-bitch -autoop -autovoice -nodesynch
+enforcebans +dynamicbans +userbans -autohalfop
-protecthalfops
+dynamicexempts +userexempts +dynamicinvites +userinvites
flood settings: chan ctcp join kick deop nick
number: 10 5 5 3 3 0
time : 60 60 60 10 10 0
g
gk^
Halfop
Posts: 70
Joined: Sun Jul 28, 2002 6:23 am
Location: Stockholm, Sweden
Contact:

Post by gk^ »

First, its not revengemode that deops users.. Its bitch mode...
and for the second, if a user has mode +d on a channel/global he/she will always be deoped.. So, first use

Code: Select all

.chattr <handle>
If he/she got a +d .. remove it with

Code: Select all

.chattr <handle> -d
and then check if he/she got +d channel flag,

Code: Select all

.chattr <handle> <#channel>
Can you quess what comes next? Right.. If he/she got +d.. remove it using

Code: Select all

.chattr <handle> -d <#channel>
To prevent a user from getting +d, set mode +f.. I sure hope this was to any good for ya...
Locked