├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE │ └── pull_request_template.md └── workflows │ └── node.js.yml ├── LICENSE ├── README.md ├── commands ├── create.js ├── drop.js ├── edit.js ├── end.js ├── help.js ├── invite.js ├── list.js ├── ping.js ├── reroll.js └── start.js ├── config.json ├── events ├── discord │ ├── interactionCreate.js │ ├── messageCreate.js │ └── ready.js └── giveaways │ ├── endedGiveawayReactionAdded.js │ ├── giveawayEnded.js │ ├── giveawayReactionAdded.js │ ├── giveawayReactionRemoved.js │ └── giveawayRerolled.js ├── index.js ├── package.json ├── slash ├── drop.js ├── edit.js ├── end.js ├── help.js ├── invite.js ├── list.js ├── pause.js ├── ping.js ├── reroll.js ├── resume.js └── start.js ├── storage └── giveaways.json └── utils ├── message.js └── slashsync.js /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroDiscord/Giveaway/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroDiscord/Giveaway/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroDiscord/Giveaway/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroDiscord/Giveaway/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroDiscord/Giveaway/HEAD/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroDiscord/Giveaway/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroDiscord/Giveaway/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroDiscord/Giveaway/HEAD/README.md -------------------------------------------------------------------------------- /commands/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroDiscord/Giveaway/HEAD/commands/create.js -------------------------------------------------------------------------------- /commands/drop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroDiscord/Giveaway/HEAD/commands/drop.js -------------------------------------------------------------------------------- /commands/edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroDiscord/Giveaway/HEAD/commands/edit.js -------------------------------------------------------------------------------- /commands/end.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroDiscord/Giveaway/HEAD/commands/end.js -------------------------------------------------------------------------------- /commands/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroDiscord/Giveaway/HEAD/commands/help.js -------------------------------------------------------------------------------- /commands/invite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroDiscord/Giveaway/HEAD/commands/invite.js -------------------------------------------------------------------------------- /commands/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroDiscord/Giveaway/HEAD/commands/list.js -------------------------------------------------------------------------------- /commands/ping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroDiscord/Giveaway/HEAD/commands/ping.js -------------------------------------------------------------------------------- /commands/reroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroDiscord/Giveaway/HEAD/commands/reroll.js -------------------------------------------------------------------------------- /commands/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroDiscord/Giveaway/HEAD/commands/start.js -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroDiscord/Giveaway/HEAD/config.json -------------------------------------------------------------------------------- /events/discord/interactionCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroDiscord/Giveaway/HEAD/events/discord/interactionCreate.js -------------------------------------------------------------------------------- /events/discord/messageCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroDiscord/Giveaway/HEAD/events/discord/messageCreate.js -------------------------------------------------------------------------------- /events/discord/ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroDiscord/Giveaway/HEAD/events/discord/ready.js -------------------------------------------------------------------------------- /events/giveaways/endedGiveawayReactionAdded.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroDiscord/Giveaway/HEAD/events/giveaways/endedGiveawayReactionAdded.js -------------------------------------------------------------------------------- /events/giveaways/giveawayEnded.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroDiscord/Giveaway/HEAD/events/giveaways/giveawayEnded.js -------------------------------------------------------------------------------- /events/giveaways/giveawayReactionAdded.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroDiscord/Giveaway/HEAD/events/giveaways/giveawayReactionAdded.js -------------------------------------------------------------------------------- /events/giveaways/giveawayReactionRemoved.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroDiscord/Giveaway/HEAD/events/giveaways/giveawayReactionRemoved.js -------------------------------------------------------------------------------- /events/giveaways/giveawayRerolled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroDiscord/Giveaway/HEAD/events/giveaways/giveawayRerolled.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroDiscord/Giveaway/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroDiscord/Giveaway/HEAD/package.json -------------------------------------------------------------------------------- /slash/drop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroDiscord/Giveaway/HEAD/slash/drop.js -------------------------------------------------------------------------------- /slash/edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroDiscord/Giveaway/HEAD/slash/edit.js -------------------------------------------------------------------------------- /slash/end.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroDiscord/Giveaway/HEAD/slash/end.js -------------------------------------------------------------------------------- /slash/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroDiscord/Giveaway/HEAD/slash/help.js -------------------------------------------------------------------------------- /slash/invite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroDiscord/Giveaway/HEAD/slash/invite.js -------------------------------------------------------------------------------- /slash/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroDiscord/Giveaway/HEAD/slash/list.js -------------------------------------------------------------------------------- /slash/pause.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroDiscord/Giveaway/HEAD/slash/pause.js -------------------------------------------------------------------------------- /slash/ping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroDiscord/Giveaway/HEAD/slash/ping.js -------------------------------------------------------------------------------- /slash/reroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroDiscord/Giveaway/HEAD/slash/reroll.js -------------------------------------------------------------------------------- /slash/resume.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroDiscord/Giveaway/HEAD/slash/resume.js -------------------------------------------------------------------------------- /slash/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroDiscord/Giveaway/HEAD/slash/start.js -------------------------------------------------------------------------------- /storage/giveaways.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /utils/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroDiscord/Giveaway/HEAD/utils/message.js -------------------------------------------------------------------------------- /utils/slashsync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroDiscord/Giveaway/HEAD/utils/slashsync.js --------------------------------------------------------------------------------