ban_client
Ban a client from the TeamSpeak server by specifying their client ID, optional reason, and duration. Supports permanent or temporary bans for effective server administration.
Instructions
Ban a client from the server
Input Schema
Name | Required | Description | Default |
---|---|---|---|
client_id | Yes | Client ID | |
duration | No | Ban duration in seconds (0 = permanent) | |
reason | No | Ban reason | Banned by AI |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"client_id": {
"description": "Client ID",
"type": "integer"
},
"duration": {
"default": 0,
"description": "Ban duration in seconds (0 = permanent)",
"type": "integer"
},
"reason": {
"default": "Banned by AI",
"description": "Ban reason",
"type": "string"
}
},
"required": [
"client_id"
],
"type": "object"
}