Skip to content

$memberJoinPosition

$memberJoinPosition will return a members join position.

Usage

$memberJoinPosition[userID?;guildID?]

Parameters

FieldTypeDescriptionRequired
userID?numberThe ID of the user.false
guildID?numberThe ID of the guild.false

Example(s)

This will return your join position, if you’re the owner then it’d be 1:

1
client.command({
2
name: "memberJoinPosition",
3
code: `
4
$memberJoinPosition[$authorID;$guildID]
5
`
6
});