IHZAQ
IHZAQ

Reputation: 102

Getting message id from message.content djs

I was working on webhook discord bot and just asking is there a way to return value of messageid id. example:

if(message.content === "msgid"){
  const messageid = 
  message.channel.send(`Your message id is ${messageid}`)
}

any help, I will appreciate it

Upvotes: 0

Views: 193

Answers (1)

MrMythical
MrMythical

Reputation: 9041

Just use Message.id

const messageid = message.id

Upvotes: 1

Related Questions