$kick
$kick will remove a user from a given guild.
Usage
$kick[guildID;userID;reason?]Parameters
| Field | Type | Description | Required |
|---|---|---|---|
| guildID | number | The ID of the guild where the user shall be removed from. | true |
| userID | number | The ID of the user which will be removed from the guild. | true |
| reason? | string | The reason which will be displayed in the guild’s audit logs. | false |
Example(s)
This will kick someone from your guild:
1client.command({2 name: "kick",3 code: `4 <@$findMember[$message;false]> has been kicked!5 $kick[$guildID;$findMember[$message;false];Example reason!]6 `7});