2014-09-24 18:08:50 +02:00
|
|
|
#!/usr/bin/env bash
|
2014-09-24 18:19:55 +02:00
|
|
|
# This script generates commands which can be copy-pasted to Atheme's
|
|
|
|
# ChanServ to set templates which can later be set with flags.
|
|
|
|
|
|
|
|
# With these templates, bots and ops are opped and (trusted) users are
|
|
|
|
# voiced. I am not fully sure where I took the word "users", but it's good
|
|
|
|
# enough.
|
|
|
|
|
|
|
|
# Allows everyone to see ACL changes.
|
2014-09-24 18:08:50 +02:00
|
|
|
echo "/msg ChanServ set $1 VERBOSE ON"
|
2014-09-24 18:19:55 +02:00
|
|
|
|
|
|
|
# Channel founder who can do anything they want.
|
2014-09-24 18:08:50 +02:00
|
|
|
echo "/msg ChanServ template $1 founder !+*F"
|
2014-09-24 18:19:55 +02:00
|
|
|
|
|
|
|
# Successor will get all flags in the end and if they cannot be trusted
|
|
|
|
# with them now, they really shouldn't be successor.
|
2014-09-24 18:08:50 +02:00
|
|
|
echo "/msg ChanServ template $1 successor !+*S"
|
2014-09-24 18:19:55 +02:00
|
|
|
|
|
|
|
# Super op, be able to do everything with services
|
2014-09-24 18:08:50 +02:00
|
|
|
echo "/msg ChanServ template $1 sop !+*"
|
2014-09-24 18:19:55 +02:00
|
|
|
|
|
|
|
# Normal op, be able to invite, invite, kick, kickban, unban, change topic
|
2014-09-24 18:08:50 +02:00
|
|
|
echo "/msg ChanServ template $1 op !+vVoirtAO"
|
2014-09-24 18:19:55 +02:00
|
|
|
|
2014-09-28 11:10:09 +02:00
|
|
|
# Half op, be able to do everything else than kick ops
|
2014-09-28 11:13:26 +02:00
|
|
|
echo "/msg ChanServ template $1 hop !+vVirtAH"
|
2014-09-28 11:10:09 +02:00
|
|
|
|
2014-09-24 18:19:55 +02:00
|
|
|
# Network operator whom we want to have a little access so they can help
|
|
|
|
# with channel issues in case our own ops are away.
|
|
|
|
# Usually given to $OPER or staffer hostmask.
|
2014-09-24 18:08:50 +02:00
|
|
|
echo "/msg ChanServ template $1 oper !+voirtA"
|
2014-09-24 18:19:55 +02:00
|
|
|
|
|
|
|
# Bot which doesn't need to be able to do so much.
|
2014-09-24 18:08:50 +02:00
|
|
|
echo "/msg ChanServ template $1 bot !+Oirt"
|
2014-09-24 18:19:55 +02:00
|
|
|
|
2014-09-28 11:10:09 +02:00
|
|
|
# Half op bot which doesn't need to be able to do even that much
|
|
|
|
echo "/msg ChanServ template $1 hbot !+Hirt"
|
|
|
|
|
2014-09-24 18:19:55 +02:00
|
|
|
# User who is just allowed to voice themselves and get into the channel
|
|
|
|
# unless they are banned.
|
2014-09-24 18:08:50 +02:00
|
|
|
echo "/msg ChanServ template $1 user !+ViA"
|
2014-09-24 18:19:55 +02:00
|
|
|
|
|
|
|
# Lesser version of user, usually given to $REGISTERED or *!*@*. Can view
|
|
|
|
# the access list to see whom to contact in emergency and use MemoServ
|
|
|
|
# SENDOPS commands. Requires user to be registered even if *!*@* has +A.
|
2014-09-24 18:08:50 +02:00
|
|
|
echo "/msg ChanServ template $1 alert +A"
|
2014-09-24 18:19:55 +02:00
|
|
|
|
|
|
|
# Permanent ban. Removes all flags and sets autokick.
|
2014-09-24 18:08:50 +02:00
|
|
|
echo "/msg ChanServ template $1 ban -*+b"
|