$memberExists
$memberExists
will check if a given user is member of the given guild.
Usage
$memberExists[userID;guildID?]
Parameters
Field | Type | Description | Required |
---|---|---|---|
userID | number | ID of the user you want to check if they’re currently a member of the given server | true |
guildID? | number | the server where the user is present in | false |
Example(s)
This will return true
as you’re currently in this guild:
1client.command({2 name: "memberExists",3 code: `4 $memberExists[$authorid;$guildID]5 `6});