Skip to content
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 editing config.json
  • per-conversation by directly editing config.json

config.json example snippets are available at the bottom of this page.

Admin Commands

/bot addmod <user_id> [<user_id>] ...

  • Adds specified user_ids to the global mod list

/bot delmod <user_id>

  • Remove a single user_id from the global mod list

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