Androz2091 / discord-giveaways

🎉 Complete framework to facilitate the creation of giveaways using discord.js
https://discord-giveaways.js.org
MIT License
334 stars 127 forks source link

Question to win message #240

Closed soudblox closed 3 years ago

soudblox commented 3 years ago

I have the giveawayEnded event, but when a giveaway is ended, it sends the default ended message and the custom one, how can I prevent this? image

Nico105 commented 3 years ago

https://discord-giveaways.js.org/global.html#GiveawayMessages You just add/edit the winMessage property of the giveaway object, instead of sending it with the event

soudblox commented 3 years ago

https://discord-giveaways.js.org/global.html#GiveawayMessages You just add/edit the winMessage property of the giveaway object, instead of sending it with the event

Thanks, what options can i use other than {winners} and {prize}?

Nico105 commented 3 years ago

{messageURL} so that you get a link like in your ss

soudblox commented 3 years ago

is there a way to get host id?

Nico105 commented 3 years ago

You can just set that in your property

winMessage: `Giveaway hosted by ${message.author}`
soudblox commented 3 years ago

Thanks!