-
Notifications
You must be signed in to change notification settings - Fork 2
Monitoradds Plugin
Innocent Bystander edited this page Apr 23, 2015
·
5 revisions
Requires Plugin: monitoradds
Bot will monitor hangouts which have a "watch_new_adds": true
parameter (or all hangouts if set globally) and issue a warning if a new user is added to a HO by someone who is not either an admin or mod. Mods can be added:
- globally via
/bot
admin commands or directly editingconfig.json
- per-conversation by directly editing
config.json
config.json
example snippets are available at the bottom of this page.
/bot addmod <user_id> [<user_id>] ...
- Adds specified
user_id
s to the global mod list
/bot delmod <user_id>
- Remove a single
user_id
from the global mod list
...,
"watch_new_adds": true,
"mods": [
"<USER_ID_1>",
"<USER_ID_2>"
],
...
...,
"conversations": {
"<CONV_ID_1>": {
"watch_new_adds": true,
"mods": [
"<USER_ID_1>",
"<USER_ID_2>"
]
},
"<CONV_ID_2>": {
"watch_new_adds": true,
"mods": [
"<USER_ID_3>",
"<USER_ID_4>"
]
}
},
...
Plugin List | Developer Reference: [ Intro | Plugins | Sinks | In-built Functionality | [Configuration] (Configuration) ]