Change user nickname with discord.js

前端 未结 11 1422
清酒与你
清酒与你 2020-12-16 19:15

I wonder if you can help (I search it and nothing...) I am learning how to work with discord.js node and I want to change my user nickname (not the username itself)

11条回答
  •  失恋的感觉
    2020-12-16 19:54

    According to the example from the docs, something like

    message.guild.members.get(message.author.id).setNickname("");

    would give you your desired results, if you want the user to only be able to change his/her nicks through the command.

提交回复
热议问题