$playerChannelID
$playerChannelID will set or return the channel where the player message will be send.
Usage
$playerChannelID[channelId?]Parameters
| Field | Type | Description | Required |
|---|---|---|---|
| channelId? | snowflake | Text channel id you want to set as player channel id | false |
Example(s)
This will return the channel where the player message will be send
1client.command({2 name: 'playerchannelid',3 code: `4 $playerChannelID5 `6});This will return the channel where the player message will be send
1module.exports = [{2 name: 'playerchannelid',3 code: `4 $playerChannelID5 `6}]