Added intents and get_pfp command

This commit is contained in:
2025-07-22 06:59:32 +03:00
parent 18573286bc
commit 1134295242
3 changed files with 38 additions and 4 deletions

View File

@@ -12,6 +12,17 @@
"Get someone elses profile picture as a picture"
#define COMMAND_GET_PFP_ARGS_USER \
"Whose profile picture do you want to get(it can be yourself)"
#define COMMAND_GET_PFP_FAIL_NOT_A_MEMBER(userid) \
"<@" + userid + \
"> is not a member.\nYou can only get profile picture of " \
"guild/server members!"
#define COMMAND_GET_PFP_RETURN_ONLY_PFP(userid, pfplink) \
"<@" + userid + ">'s [discord profile picture](" + pfplink + ")"
#define COMMAND_GET_PFP_RETURN_SERVER_AND_DISCORD_PFP(userid, discordpfp, \
guildpfp) \
"<@" + userid + ">'s [discord profile picture](" + discordpfp + \
") and their [server profile picture](" + guildpfp + ")"
// Command about
#define COMMAND_ABOUT_DESCRIPTION "Info about the bot"