rankCard()
This function is used to generate an image of a user's rank.
Parametersβ
Parameter | Type | Required | Description |
---|---|---|---|
guild | {id: string, name: string} | β | The guild object. |
user | CardUserOptions | β | The user object. |
options | RankCardOptions | β | The options. |
locales | RankCardLocales | β | The locales. |
Returnsβ
- Promise<
{ attachment: Buffer; description: string; name: string; }
>
Throwsβ
XpFatal
- if invalid parameters are provided.
[JS] Exampleβ
const {rankCard} = require('simply-xp');
const guild = {
id: "867999056172052551",
name: "Simply Develop"
};
const user = {
avatarURL: "https://avatarfiles.alphacoders.com/280/280594.jpg",
id: "326815959358898189",
username: "Abadima",
};
rankCard(guild, user)
.then(console.log) // Returns the rank card object
.catch((err) => console.log(err)); // Returns the error