reset()
This function is used to reset the XP and level of a user.
Parametersβ
Parameter | Type | Required | Default | Description |
---|---|---|---|---|
userId | string | β | The ID of the user. | |
guildId | string | β | The guild ID. | |
erase | boolean | β | false | Erase user entry from database? |
username | string | β | Username to use if auto_create is enabled. |
Returnsβ
- Promise<
boolean
>
Throwsβ
XpFatal
- If invalid parameters are provided, or if there is a database error.
[JS] Exampleβ
const {reset} = require('simply-xp');
const userid = "326815959358898189";
const guildid = "867999056172052551";
const username = "Abadima";
const erase = false;
reset(userid, guildid, erase, username)
.then(console.log) // Returns true if reset was successful
.catch((err) => console.log(err)); // Returns the error