addXP()
This function is used to add experience to a user.
Parametersβ
Parameter | Type | Required | Description |
---|---|---|---|
message | Message | β | The message object. |
userId | string | β | The User ID |
guildId | string | β | The Guild ID |
xp | number {min, max} | β | Amount of XP to add. |
Returnsβ
- Promise<
{ level: number, xp: number }
>
Throwsβ
new Error()
- if invalid parameters are provided.
[JS] Exampleβ
const {addXP} = require("simply-xp");
const userid = "770551872309166090";
const guildid = "867999056172052551";
const xp = 10000000; // or xp = {min: 5000000, max: 10000000}
addXP(message, userid, guildid, xp)
.then(console.log) // Returns the updated level and xp
.catch((err) => console.log(err)); // Returns the error