メインコンテンツまでスキップ
バージョン: v2.0

setXP()

この関数は、ユーザーの XP を設定するために使用します。

パラメーター​

ParameterTypeRequiredDescription
userIdstring✅ユーザーの ID。
guildIdstring✅ギルド ID。
xpnumber✅設定する絶対 XP 値。
usernamestring❌ユーザー名。

戻り値​

例外​

  • XpFatal - 無効なパラメーターが渡された場合。

[JS] 例​

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

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

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