Add idlemove module for moving/muting/deafening idle players.

This commit is contained in:
Stefan Hacker
2010-12-20 20:19:44 +01:00
parent a71cf75a83
commit 76dea5d80c
2 changed files with 229 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
;
; Module for moving/muting/deafening idle players after
; a certain amount of time and moving them back once
; they interact again.
;
[idlemove]
; Interval in which to check for idle users in seconds,
; setting this to low might hurt server performance
interval = 10
; Comma seperated list of servers to operate on, leave empty for all
servers =
[all]
; Time in seconds after which to consider a player idle
threshold = 3600
; Mute the player idle
mute = True
; Deafen the player when idle
deafen = False
; Id of the channel to move the player to when idle
channel = 0
; For every server you want to override the [all] section for create
; a [server_<serverid>] section. For example:
; Overriding [all] for server with the id 1 would look like this
;[server_1]
;threshold = 60
;mute = True
;deafen = False
;channel = 1