WeAz, eggdrop has already done the work for you.
You need to set the rooms and people to the proper settings.
ok, lets set the channel settings:
# autoop
# Op users with the +o flag as soon as they join the channel?
# This is insecure and not recommended.
#
# autohalfop
# Halfop users with the +l flag as soon as they join the channel?
#
Code: Select all
# you need to set these settings in your conf file
channel add #botcentral {
chanmode "+nt"
flood-ctcp 3:60
flood-nick 5:30
}
channel set #botcentral +autoop +autohalfop +userbans -greet
now for the users:
#[add a new user]
# adduser <handle> [hostmask]
# Description: creates a new user entry with the handle and hostmask given (with no password and the default flags)
# Returns: 1 if successful; 0 if the handle already exists
Code: Select all
#You need to set these settings from the console
.adduser <handle> [hostmask]
#[change flags]
# chattr <handle> [changes [channel]]
# Description: changes the attributes for a user record, if you include any. Changes are of the form '+f', '-o', '+dk', '-o+d', etc. If changes are specified in the format of | , the channel-specific flags for that channel are altered. You can now use the +o|-o #channel format here too.
# Returns: new flags for the user (if you made no changes, the current flags are returned). If a channel was specified, the global AND the channel-specific flags for that channel are returned in the format of globalflags|channelflags. "*" is returned if the specified user does not exist
Code: Select all
#You need to set these settings from the console
.chattr <handle> +o [channel]
.chattr <handle> +l [channel]
extra Info:
# userbans
# Allow bans to be made by other users on the channel
#
# greet
# Say a user's info line when they join the channel?(this can get annoying)
Code: Select all
Note:all this information was found in the eggdrop conf file and the doc dir
I once was an intelligent young man, now i am old and i can not remember who i was.