Skip to main content

create()

This function is used to create a user in the database.

Parameters​

ParameterTypeRequiredDescription
userIdstringβœ…The ID of the user.
guildIdstringβœ…The guild ID.
usernamestringβœ…The name of user.

Returns​

Throws​

  • XpFatal - if invalid parameters are provided.

[JS] Example​

const {create} = require('simply-xp');

const userid = "326815959358898189";
const guildid = "867999056172052551";
const username = "Abadima";

create(userid, guildid, username)
.then(console.log) // Returns the user object
.catch((err) => console.log(err)); // Returns the error