Skip to content
Innocent Bystander edited this page Apr 16, 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 either globally or for individual hangouts in config.json.

Snippets for config.json

Global

...,
"watch_new_adds": true,
"mods": [
  "<USER_ID_1>", 
  "<USER_ID_2>"
],
...

Per-Conversation:

...,
"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>"
    ]
  }
},
...

# ## ###

Clone this wiki locally