$memberJoinPosition
$memberJoinPosition
will return a member’s join position.
Usage
$memberJoinPosition[userID?;guildID?]
Parameters
Field | Type | Description | Required |
---|---|---|---|
userID? | number | The ID of the user. | false |
guildID? | number | The ID of the guild. | false |
Example(s)
This will return your join position, if you’re the owner then it’d be 1
:
1client.command({2 name: "memberJoinPosition",3 code: `4 $memberJoinPosition[$authorID;$guildID]5 `6});