unban
Unbans a user from the current guild.
Syntax
unban(userID)
Parameters
userID
: The user to unban. Value must be a valid user snowflake ID.
Permissions
Required permission which the bot must have for this function to work properly:
ban
Example
try {
const msg = message.replace(commandPrefix, '').replace(/ +/g, ' ').trim().split(' ', 1);
if (!msg.length) {
setResponse(`Usage : \` ${commandPrefix} [User ID] \``);
} else {
const id = /^\d{17,20}$/.test(msg);
if (!id)
throw new Error('Invalid ID!');
if (msg[0] === authorId)
throw new Error('You are not banned!');
sendChannelMessage(channelId, `<@${authorId}> unbans \` ${msg} \`!!`);
unban(msg)
};
} catch (err) {
setResponse('Command Error : ` ' + err.message + ' `');
};