reset()
This function is used to reset a user in the database.
Parameters
Parameter | Type | Required | Description |
---|---|---|---|
userId | string | ✅ | The User ID |
guildId | string | ✅ | The Guild ID |
Returns
- Promise<
object
>
Example:
{
user: "326815959358898189",
guild: "867999056172052551",
level: 0,
xp: 0
}
Throws
new Error()
- if invalid parameters are provided.
[JS] Example
const {create} = require('simply-xp');
const userid = "326815959358898189";
const guildid = "867999056172052551";
create(userid, guildid)
.then(console.log) // Returns the user object
.catch((err) => console.log(err)); // Returns the error