メインコンテンツまでスキップ

reset()

This function is used to reset the XP and level of a user.

Parameters

ParameterTypeRequiredDefaultDescription
userIdstringThe ID of the user.
guildIdstringThe guild ID.
erasebooleanfalseErase user entry from database?
usernamestringUsername 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