├── .gitignore ├── .vscode └── launch.json ├── Dockerfile ├── README.md ├── package.json ├── src ├── commands │ ├── antiraid │ │ └── antiraid.js │ ├── blacklist │ │ ├── blacklist.js │ │ └── blrole.js │ ├── eval.js │ ├── gestion │ │ ├── autorole.js │ │ ├── backup.js │ │ ├── counter.js │ │ ├── embed.js │ │ ├── logs.js │ │ ├── massrole.js │ │ ├── reactrole.js │ │ ├── soutien.js │ │ └── tempvoc.js │ ├── giveaway │ │ ├── gcreate.js │ │ ├── gdelete.js │ │ ├── gden.js │ │ └── greroll.js │ ├── guildOwners │ │ ├── group.js │ │ ├── owner.js │ │ ├── perm.js │ │ ├── setcolor.js │ │ └── setprefix.js │ ├── help.js │ ├── info │ │ ├── botinfo.js │ │ ├── roleinfo.js │ │ ├── serverinfo.js │ │ └── userinfo.js │ ├── moderation │ │ ├── ban.js │ │ ├── kick.js │ │ ├── lock.js │ │ ├── mute.js │ │ ├── mutelist.js │ │ ├── renew.js │ │ ├── tempmute.js │ │ ├── unban.js │ │ └── unmute.js │ ├── test.js │ └── utils │ │ ├── addbot.js │ │ ├── alladmins.js │ │ ├── allbots.js │ │ ├── avatar.js │ │ ├── banner.js │ │ ├── bring.js │ │ ├── clear.js │ │ ├── emoji.js │ │ ├── info.js │ │ ├── invite.js │ │ ├── leaderboard.js │ │ ├── piconly.js │ │ ├── ping.js │ │ ├── poll.js │ │ ├── setup.js │ │ ├── snipe.js │ │ ├── unrank.js │ │ └── vc.js ├── config.js ├── contextMenu │ └── blacklist │ │ └── blacklist.js ├── events │ ├── anticrash │ │ ├── multipleResolves.js │ │ ├── uncaughtException.js │ │ ├── uncaughtExceptionMonitor.js │ │ └── unhandledRejection.js │ ├── antiraid │ │ ├── antiDc │ │ │ └── guildMemberAdd.js │ │ ├── antiMassMention │ │ │ └── messageCreate.js │ │ ├── channel │ │ │ ├── channelCreate.js │ │ │ ├── channelDelete.js │ │ │ ├── channelUpdate.js │ │ │ └── guildChannelPermissionsUpdate.js │ │ ├── guild │ │ │ ├── guildBanAdd.js │ │ │ ├── guildMemberAdd.js │ │ │ ├── guildMemberRemove.js │ │ │ ├── guildUpdate.js │ │ │ └── guildVanityURLUpdate.js │ │ ├── limit │ │ │ ├── guildMemberAdd.js │ │ │ ├── guildMemberRemove.js │ │ │ └── messageCreate.js │ │ ├── message │ │ │ ├── messageCreate.js │ │ │ └── messageUpdate.js │ │ ├── role │ │ │ ├── guildMemberRoleAdd.js │ │ │ ├── guildMemberRoleRemove.js │ │ │ ├── roleCreate.js │ │ │ ├── roleDelete.js │ │ │ └── roleUpdate.js │ │ └── webhook │ │ │ └── webhookUpdate.js │ ├── autorole │ │ └── guildMemberAdd.js │ ├── blacklist │ │ ├── guildMemberAdd.js │ │ └── guildMemberRoleAdd.js │ ├── client │ │ ├── guildCreate.js │ │ ├── guildDelete.js │ │ ├── guildMemberAdd.js │ │ ├── interactionCreate.js │ │ ├── messageCreate.js │ │ └── ready.js │ ├── featuresLogs │ │ ├── channel │ │ │ ├── channelCreate.js │ │ │ ├── channelDelete.js │ │ │ └── channelUpdate.js │ │ ├── guild │ │ │ ├── guildBanAdd.js │ │ │ ├── guildBanRemove.js │ │ │ └── guildMemberRemove.js │ │ ├── message │ │ │ ├── messageDelete.js │ │ │ └── messageUpdate.js │ │ ├── role │ │ │ ├── guildMemberRoleAdd.js │ │ │ ├── guildMemberRoleRemove.js │ │ │ ├── roleCreate.js │ │ │ ├── roleDelete.js │ │ │ └── roleUpdate.js │ │ └── voice │ │ │ ├── voiceChannelJoin.js │ │ │ ├── voiceChannelLeave.js │ │ │ ├── voiceChannelMute.js │ │ │ ├── voiceChannelSwitch.js │ │ │ └── voiceChannelUnmute.js │ ├── invite │ │ ├── guildMemberAdd.js │ │ ├── guildMemberRemove.js │ │ ├── inviteCreate.js │ │ └── inviteDelete.js │ ├── mute │ │ └── guildMemberRoleRemove.js │ ├── piconly │ │ └── messageCreate.js │ ├── poll │ │ └── interactionCreate.js │ ├── rateLimit.js │ ├── reactrole │ │ ├── messageReactionAdd.js │ │ └── messageReactionRemove.js │ ├── snipe │ │ └── messageDelete.js │ ├── soutien │ │ └── presenceUpdate.js │ └── tempvoc │ │ ├── voiceChannelJoin.js │ │ ├── voiceChannelLeave.js │ │ └── voiceChannelSwitch.js ├── index.js ├── langs │ ├── de.js │ ├── en.js │ └── fr.js ├── managers │ ├── backups │ │ └── index.js │ ├── blacklist │ │ └── index.js │ ├── categoryTicket │ │ └── index.js │ ├── giveaways │ │ └── index.js │ ├── groups │ │ └── index.js │ ├── guilds │ │ └── index.js │ ├── index.js │ ├── members │ │ └── index.js │ ├── mutes │ │ └── index.js │ └── roles │ │ └── index.js ├── shard.js ├── slashCommands │ ├── antiraid │ │ └── antiraid.js │ ├── blacklist │ │ └── blacklist.js │ ├── eval.js │ ├── gestion │ │ ├── autorole.js │ │ ├── backup.js │ │ ├── counter.js │ │ ├── embed.js │ │ ├── giveaway.js │ │ ├── logs.js │ │ ├── massrole.js │ │ ├── reactrole.js │ │ ├── soutien.js │ │ └── tempvoc.js │ ├── guildOwners │ │ ├── group.js │ │ ├── owner.js │ │ ├── perm.js │ │ └── set.js │ ├── help.js │ ├── moderation │ │ ├── ban.js │ │ ├── kick.js │ │ ├── lock.js │ │ ├── mute.js │ │ ├── renew.js │ │ └── unban.js │ ├── ticket │ │ └── categoryTicket.js │ └── utils │ │ ├── addbot.js │ │ ├── all.js │ │ ├── avatar.js │ │ ├── bring.js │ │ ├── clear.js │ │ ├── emoji.js │ │ ├── info.js │ │ ├── invite.js │ │ ├── leaderboard.js │ │ ├── piconly.js │ │ ├── ping.js │ │ ├── poll.js │ │ ├── setup.js │ │ ├── snipe.js │ │ ├── unrank.js │ │ └── vc.js ├── structures │ ├── OFADatabase.js │ ├── OFAHandlers.js │ ├── OFAManagers.js │ └── OneForAll.js └── utils │ ├── Backup │ └── lib │ │ ├── create.d.ts │ │ ├── create.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── load.d.ts │ │ ├── load.js │ │ ├── types │ │ ├── AfkData.d.ts │ │ ├── AfkData.js │ │ ├── BackupData.d.ts │ │ ├── BackupData.js │ │ ├── BackupInfos.d.ts │ │ ├── BackupInfos.js │ │ ├── BanData.d.ts │ │ ├── BanData.js │ │ ├── BaseChannelData.d.ts │ │ ├── BaseChannelData.js │ │ ├── CategoryData.d.ts │ │ ├── CategoryData.js │ │ ├── ChannelPermissionData.d.ts │ │ ├── ChannelPermissionData.js │ │ ├── ChannelsData.d.ts │ │ ├── ChannelsData.js │ │ ├── CreateOptions.d.ts │ │ ├── CreateOptions.js │ │ ├── EmojiData.d.ts │ │ ├── EmojiData.js │ │ ├── LoadOptions.d.ts │ │ ├── LoadOptions.js │ │ ├── MessageData.d.ts │ │ ├── MessageData.js │ │ ├── RoleData.d.ts │ │ ├── RoleData.js │ │ ├── TextChannelData.d.ts │ │ ├── TextChannelData.js │ │ ├── ThreadChannelData.d.ts │ │ ├── ThreadChannelData.js │ │ ├── VoiceChannelData.d.ts │ │ ├── VoiceChannelData.js │ │ ├── WidgetData.d.ts │ │ ├── WidgetData.js │ │ ├── index.d.ts │ │ └── index.js │ │ ├── util.d.ts │ │ └── util.js │ ├── DataMenu.js │ ├── Giveaway │ ├── Constants.js │ ├── Giveaway.js │ ├── Manager.js │ └── utils.js │ ├── Xp │ └── index.js │ ├── check │ ├── counter.js │ ├── mute.js │ ├── polls.js │ └── soutien.js │ ├── collection │ ├── index.d.ts │ └── index.js │ ├── defaults.js │ ├── functions.js │ └── permissions │ ├── GlobalPermissions.js │ ├── GroupPermissions.js │ ├── MemberPermissions.js │ └── Permissions.js └── website └── template ├── shop.css └── shop.html /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | /.idea/ 3 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/package.json -------------------------------------------------------------------------------- /src/commands/antiraid/antiraid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/commands/antiraid/antiraid.js -------------------------------------------------------------------------------- /src/commands/blacklist/blacklist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/commands/blacklist/blacklist.js -------------------------------------------------------------------------------- /src/commands/blacklist/blrole.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/commands/blacklist/blrole.js -------------------------------------------------------------------------------- /src/commands/eval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/commands/eval.js -------------------------------------------------------------------------------- /src/commands/gestion/autorole.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/commands/gestion/autorole.js -------------------------------------------------------------------------------- /src/commands/gestion/backup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/commands/gestion/backup.js -------------------------------------------------------------------------------- /src/commands/gestion/counter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/commands/gestion/counter.js -------------------------------------------------------------------------------- /src/commands/gestion/embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/commands/gestion/embed.js -------------------------------------------------------------------------------- /src/commands/gestion/logs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/commands/gestion/logs.js -------------------------------------------------------------------------------- /src/commands/gestion/massrole.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/commands/gestion/massrole.js -------------------------------------------------------------------------------- /src/commands/gestion/reactrole.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/commands/gestion/reactrole.js -------------------------------------------------------------------------------- /src/commands/gestion/soutien.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/commands/gestion/soutien.js -------------------------------------------------------------------------------- /src/commands/gestion/tempvoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/commands/gestion/tempvoc.js -------------------------------------------------------------------------------- /src/commands/giveaway/gcreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/commands/giveaway/gcreate.js -------------------------------------------------------------------------------- /src/commands/giveaway/gdelete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/commands/giveaway/gdelete.js -------------------------------------------------------------------------------- /src/commands/giveaway/gden.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/commands/giveaway/gden.js -------------------------------------------------------------------------------- /src/commands/giveaway/greroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/commands/giveaway/greroll.js -------------------------------------------------------------------------------- /src/commands/guildOwners/group.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/commands/guildOwners/group.js -------------------------------------------------------------------------------- /src/commands/guildOwners/owner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/commands/guildOwners/owner.js -------------------------------------------------------------------------------- /src/commands/guildOwners/perm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/commands/guildOwners/perm.js -------------------------------------------------------------------------------- /src/commands/guildOwners/setcolor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/commands/guildOwners/setcolor.js -------------------------------------------------------------------------------- /src/commands/guildOwners/setprefix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/commands/guildOwners/setprefix.js -------------------------------------------------------------------------------- /src/commands/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/commands/help.js -------------------------------------------------------------------------------- /src/commands/info/botinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/commands/info/botinfo.js -------------------------------------------------------------------------------- /src/commands/info/roleinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/commands/info/roleinfo.js -------------------------------------------------------------------------------- /src/commands/info/serverinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/commands/info/serverinfo.js -------------------------------------------------------------------------------- /src/commands/info/userinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/commands/info/userinfo.js -------------------------------------------------------------------------------- /src/commands/moderation/ban.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/commands/moderation/ban.js -------------------------------------------------------------------------------- /src/commands/moderation/kick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/commands/moderation/kick.js -------------------------------------------------------------------------------- /src/commands/moderation/lock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/commands/moderation/lock.js -------------------------------------------------------------------------------- /src/commands/moderation/mute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/commands/moderation/mute.js -------------------------------------------------------------------------------- /src/commands/moderation/mutelist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/commands/moderation/mutelist.js -------------------------------------------------------------------------------- /src/commands/moderation/renew.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/commands/moderation/renew.js -------------------------------------------------------------------------------- /src/commands/moderation/tempmute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/commands/moderation/tempmute.js -------------------------------------------------------------------------------- /src/commands/moderation/unban.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/commands/moderation/unban.js -------------------------------------------------------------------------------- /src/commands/moderation/unmute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/commands/moderation/unmute.js -------------------------------------------------------------------------------- /src/commands/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/commands/test.js -------------------------------------------------------------------------------- /src/commands/utils/addbot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/commands/utils/addbot.js -------------------------------------------------------------------------------- /src/commands/utils/alladmins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/commands/utils/alladmins.js -------------------------------------------------------------------------------- /src/commands/utils/allbots.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/commands/utils/allbots.js -------------------------------------------------------------------------------- /src/commands/utils/avatar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/commands/utils/avatar.js -------------------------------------------------------------------------------- /src/commands/utils/banner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/commands/utils/banner.js -------------------------------------------------------------------------------- /src/commands/utils/bring.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/commands/utils/bring.js -------------------------------------------------------------------------------- /src/commands/utils/clear.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/commands/utils/clear.js -------------------------------------------------------------------------------- /src/commands/utils/emoji.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/commands/utils/emoji.js -------------------------------------------------------------------------------- /src/commands/utils/info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/commands/utils/info.js -------------------------------------------------------------------------------- /src/commands/utils/invite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/commands/utils/invite.js -------------------------------------------------------------------------------- /src/commands/utils/leaderboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/commands/utils/leaderboard.js -------------------------------------------------------------------------------- /src/commands/utils/piconly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/commands/utils/piconly.js -------------------------------------------------------------------------------- /src/commands/utils/ping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/commands/utils/ping.js -------------------------------------------------------------------------------- /src/commands/utils/poll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/commands/utils/poll.js -------------------------------------------------------------------------------- /src/commands/utils/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/commands/utils/setup.js -------------------------------------------------------------------------------- /src/commands/utils/snipe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/commands/utils/snipe.js -------------------------------------------------------------------------------- /src/commands/utils/unrank.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/commands/utils/unrank.js -------------------------------------------------------------------------------- /src/commands/utils/vc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/commands/utils/vc.js -------------------------------------------------------------------------------- /src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/config.js -------------------------------------------------------------------------------- /src/contextMenu/blacklist/blacklist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/contextMenu/blacklist/blacklist.js -------------------------------------------------------------------------------- /src/events/anticrash/multipleResolves.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/events/anticrash/multipleResolves.js -------------------------------------------------------------------------------- /src/events/anticrash/uncaughtException.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/events/anticrash/uncaughtException.js -------------------------------------------------------------------------------- /src/events/anticrash/uncaughtExceptionMonitor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/events/anticrash/uncaughtExceptionMonitor.js -------------------------------------------------------------------------------- /src/events/anticrash/unhandledRejection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/events/anticrash/unhandledRejection.js -------------------------------------------------------------------------------- /src/events/antiraid/antiDc/guildMemberAdd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/events/antiraid/antiDc/guildMemberAdd.js -------------------------------------------------------------------------------- /src/events/antiraid/antiMassMention/messageCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/events/antiraid/antiMassMention/messageCreate.js -------------------------------------------------------------------------------- /src/events/antiraid/channel/channelCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/events/antiraid/channel/channelCreate.js -------------------------------------------------------------------------------- /src/events/antiraid/channel/channelDelete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/events/antiraid/channel/channelDelete.js -------------------------------------------------------------------------------- /src/events/antiraid/channel/channelUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/events/antiraid/channel/channelUpdate.js -------------------------------------------------------------------------------- /src/events/antiraid/channel/guildChannelPermissionsUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/events/antiraid/channel/guildChannelPermissionsUpdate.js -------------------------------------------------------------------------------- /src/events/antiraid/guild/guildBanAdd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/events/antiraid/guild/guildBanAdd.js -------------------------------------------------------------------------------- /src/events/antiraid/guild/guildMemberAdd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/events/antiraid/guild/guildMemberAdd.js -------------------------------------------------------------------------------- /src/events/antiraid/guild/guildMemberRemove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/events/antiraid/guild/guildMemberRemove.js -------------------------------------------------------------------------------- /src/events/antiraid/guild/guildUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/events/antiraid/guild/guildUpdate.js -------------------------------------------------------------------------------- /src/events/antiraid/guild/guildVanityURLUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/events/antiraid/guild/guildVanityURLUpdate.js -------------------------------------------------------------------------------- /src/events/antiraid/limit/guildMemberAdd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/events/antiraid/limit/guildMemberAdd.js -------------------------------------------------------------------------------- /src/events/antiraid/limit/guildMemberRemove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/events/antiraid/limit/guildMemberRemove.js -------------------------------------------------------------------------------- /src/events/antiraid/limit/messageCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/events/antiraid/limit/messageCreate.js -------------------------------------------------------------------------------- /src/events/antiraid/message/messageCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/events/antiraid/message/messageCreate.js -------------------------------------------------------------------------------- /src/events/antiraid/message/messageUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/events/antiraid/message/messageUpdate.js -------------------------------------------------------------------------------- /src/events/antiraid/role/guildMemberRoleAdd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/events/antiraid/role/guildMemberRoleAdd.js -------------------------------------------------------------------------------- /src/events/antiraid/role/guildMemberRoleRemove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/events/antiraid/role/guildMemberRoleRemove.js -------------------------------------------------------------------------------- /src/events/antiraid/role/roleCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/events/antiraid/role/roleCreate.js -------------------------------------------------------------------------------- /src/events/antiraid/role/roleDelete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/events/antiraid/role/roleDelete.js -------------------------------------------------------------------------------- /src/events/antiraid/role/roleUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/events/antiraid/role/roleUpdate.js -------------------------------------------------------------------------------- /src/events/antiraid/webhook/webhookUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/events/antiraid/webhook/webhookUpdate.js -------------------------------------------------------------------------------- /src/events/autorole/guildMemberAdd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/events/autorole/guildMemberAdd.js -------------------------------------------------------------------------------- /src/events/blacklist/guildMemberAdd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/events/blacklist/guildMemberAdd.js -------------------------------------------------------------------------------- /src/events/blacklist/guildMemberRoleAdd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/events/blacklist/guildMemberRoleAdd.js -------------------------------------------------------------------------------- /src/events/client/guildCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/events/client/guildCreate.js -------------------------------------------------------------------------------- /src/events/client/guildDelete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/events/client/guildDelete.js -------------------------------------------------------------------------------- /src/events/client/guildMemberAdd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/events/client/guildMemberAdd.js -------------------------------------------------------------------------------- /src/events/client/interactionCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/events/client/interactionCreate.js -------------------------------------------------------------------------------- /src/events/client/messageCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/events/client/messageCreate.js -------------------------------------------------------------------------------- /src/events/client/ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/events/client/ready.js -------------------------------------------------------------------------------- /src/events/featuresLogs/channel/channelCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/events/featuresLogs/channel/channelCreate.js -------------------------------------------------------------------------------- /src/events/featuresLogs/channel/channelDelete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/events/featuresLogs/channel/channelDelete.js -------------------------------------------------------------------------------- /src/events/featuresLogs/channel/channelUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/events/featuresLogs/channel/channelUpdate.js -------------------------------------------------------------------------------- /src/events/featuresLogs/guild/guildBanAdd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/events/featuresLogs/guild/guildBanAdd.js -------------------------------------------------------------------------------- /src/events/featuresLogs/guild/guildBanRemove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/events/featuresLogs/guild/guildBanRemove.js -------------------------------------------------------------------------------- /src/events/featuresLogs/guild/guildMemberRemove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/events/featuresLogs/guild/guildMemberRemove.js -------------------------------------------------------------------------------- /src/events/featuresLogs/message/messageDelete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/events/featuresLogs/message/messageDelete.js -------------------------------------------------------------------------------- /src/events/featuresLogs/message/messageUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/events/featuresLogs/message/messageUpdate.js -------------------------------------------------------------------------------- /src/events/featuresLogs/role/guildMemberRoleAdd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/events/featuresLogs/role/guildMemberRoleAdd.js -------------------------------------------------------------------------------- /src/events/featuresLogs/role/guildMemberRoleRemove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/events/featuresLogs/role/guildMemberRoleRemove.js -------------------------------------------------------------------------------- /src/events/featuresLogs/role/roleCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/events/featuresLogs/role/roleCreate.js -------------------------------------------------------------------------------- /src/events/featuresLogs/role/roleDelete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/events/featuresLogs/role/roleDelete.js -------------------------------------------------------------------------------- /src/events/featuresLogs/role/roleUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/events/featuresLogs/role/roleUpdate.js -------------------------------------------------------------------------------- /src/events/featuresLogs/voice/voiceChannelJoin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/events/featuresLogs/voice/voiceChannelJoin.js -------------------------------------------------------------------------------- /src/events/featuresLogs/voice/voiceChannelLeave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/events/featuresLogs/voice/voiceChannelLeave.js -------------------------------------------------------------------------------- /src/events/featuresLogs/voice/voiceChannelMute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/events/featuresLogs/voice/voiceChannelMute.js -------------------------------------------------------------------------------- /src/events/featuresLogs/voice/voiceChannelSwitch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/events/featuresLogs/voice/voiceChannelSwitch.js -------------------------------------------------------------------------------- /src/events/featuresLogs/voice/voiceChannelUnmute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/events/featuresLogs/voice/voiceChannelUnmute.js -------------------------------------------------------------------------------- /src/events/invite/guildMemberAdd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/events/invite/guildMemberAdd.js -------------------------------------------------------------------------------- /src/events/invite/guildMemberRemove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/events/invite/guildMemberRemove.js -------------------------------------------------------------------------------- /src/events/invite/inviteCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/events/invite/inviteCreate.js -------------------------------------------------------------------------------- /src/events/invite/inviteDelete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/events/invite/inviteDelete.js -------------------------------------------------------------------------------- /src/events/mute/guildMemberRoleRemove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/events/mute/guildMemberRoleRemove.js -------------------------------------------------------------------------------- /src/events/piconly/messageCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/events/piconly/messageCreate.js -------------------------------------------------------------------------------- /src/events/poll/interactionCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/events/poll/interactionCreate.js -------------------------------------------------------------------------------- /src/events/rateLimit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/events/rateLimit.js -------------------------------------------------------------------------------- /src/events/reactrole/messageReactionAdd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/events/reactrole/messageReactionAdd.js -------------------------------------------------------------------------------- /src/events/reactrole/messageReactionRemove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/events/reactrole/messageReactionRemove.js -------------------------------------------------------------------------------- /src/events/snipe/messageDelete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/events/snipe/messageDelete.js -------------------------------------------------------------------------------- /src/events/soutien/presenceUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/events/soutien/presenceUpdate.js -------------------------------------------------------------------------------- /src/events/tempvoc/voiceChannelJoin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/events/tempvoc/voiceChannelJoin.js -------------------------------------------------------------------------------- /src/events/tempvoc/voiceChannelLeave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/events/tempvoc/voiceChannelLeave.js -------------------------------------------------------------------------------- /src/events/tempvoc/voiceChannelSwitch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/events/tempvoc/voiceChannelSwitch.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/index.js -------------------------------------------------------------------------------- /src/langs/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/langs/de.js -------------------------------------------------------------------------------- /src/langs/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/langs/en.js -------------------------------------------------------------------------------- /src/langs/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/langs/fr.js -------------------------------------------------------------------------------- /src/managers/backups/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/managers/backups/index.js -------------------------------------------------------------------------------- /src/managers/blacklist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/managers/blacklist/index.js -------------------------------------------------------------------------------- /src/managers/categoryTicket/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/managers/categoryTicket/index.js -------------------------------------------------------------------------------- /src/managers/giveaways/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/managers/giveaways/index.js -------------------------------------------------------------------------------- /src/managers/groups/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/managers/groups/index.js -------------------------------------------------------------------------------- /src/managers/guilds/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/managers/guilds/index.js -------------------------------------------------------------------------------- /src/managers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/managers/index.js -------------------------------------------------------------------------------- /src/managers/members/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/managers/members/index.js -------------------------------------------------------------------------------- /src/managers/mutes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/managers/mutes/index.js -------------------------------------------------------------------------------- /src/managers/roles/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/managers/roles/index.js -------------------------------------------------------------------------------- /src/shard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/shard.js -------------------------------------------------------------------------------- /src/slashCommands/antiraid/antiraid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/slashCommands/antiraid/antiraid.js -------------------------------------------------------------------------------- /src/slashCommands/blacklist/blacklist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/slashCommands/blacklist/blacklist.js -------------------------------------------------------------------------------- /src/slashCommands/eval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/slashCommands/eval.js -------------------------------------------------------------------------------- /src/slashCommands/gestion/autorole.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/slashCommands/gestion/autorole.js -------------------------------------------------------------------------------- /src/slashCommands/gestion/backup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/slashCommands/gestion/backup.js -------------------------------------------------------------------------------- /src/slashCommands/gestion/counter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/slashCommands/gestion/counter.js -------------------------------------------------------------------------------- /src/slashCommands/gestion/embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/slashCommands/gestion/embed.js -------------------------------------------------------------------------------- /src/slashCommands/gestion/giveaway.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/slashCommands/gestion/giveaway.js -------------------------------------------------------------------------------- /src/slashCommands/gestion/logs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/slashCommands/gestion/logs.js -------------------------------------------------------------------------------- /src/slashCommands/gestion/massrole.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/slashCommands/gestion/massrole.js -------------------------------------------------------------------------------- /src/slashCommands/gestion/reactrole.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/slashCommands/gestion/reactrole.js -------------------------------------------------------------------------------- /src/slashCommands/gestion/soutien.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/slashCommands/gestion/soutien.js -------------------------------------------------------------------------------- /src/slashCommands/gestion/tempvoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/slashCommands/gestion/tempvoc.js -------------------------------------------------------------------------------- /src/slashCommands/guildOwners/group.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/slashCommands/guildOwners/group.js -------------------------------------------------------------------------------- /src/slashCommands/guildOwners/owner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/slashCommands/guildOwners/owner.js -------------------------------------------------------------------------------- /src/slashCommands/guildOwners/perm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/slashCommands/guildOwners/perm.js -------------------------------------------------------------------------------- /src/slashCommands/guildOwners/set.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/slashCommands/guildOwners/set.js -------------------------------------------------------------------------------- /src/slashCommands/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/slashCommands/help.js -------------------------------------------------------------------------------- /src/slashCommands/moderation/ban.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/slashCommands/moderation/ban.js -------------------------------------------------------------------------------- /src/slashCommands/moderation/kick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/slashCommands/moderation/kick.js -------------------------------------------------------------------------------- /src/slashCommands/moderation/lock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/slashCommands/moderation/lock.js -------------------------------------------------------------------------------- /src/slashCommands/moderation/mute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/slashCommands/moderation/mute.js -------------------------------------------------------------------------------- /src/slashCommands/moderation/renew.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/slashCommands/moderation/renew.js -------------------------------------------------------------------------------- /src/slashCommands/moderation/unban.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/slashCommands/moderation/unban.js -------------------------------------------------------------------------------- /src/slashCommands/ticket/categoryTicket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/slashCommands/ticket/categoryTicket.js -------------------------------------------------------------------------------- /src/slashCommands/utils/addbot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/slashCommands/utils/addbot.js -------------------------------------------------------------------------------- /src/slashCommands/utils/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/slashCommands/utils/all.js -------------------------------------------------------------------------------- /src/slashCommands/utils/avatar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/slashCommands/utils/avatar.js -------------------------------------------------------------------------------- /src/slashCommands/utils/bring.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/slashCommands/utils/bring.js -------------------------------------------------------------------------------- /src/slashCommands/utils/clear.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/slashCommands/utils/clear.js -------------------------------------------------------------------------------- /src/slashCommands/utils/emoji.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/slashCommands/utils/emoji.js -------------------------------------------------------------------------------- /src/slashCommands/utils/info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/slashCommands/utils/info.js -------------------------------------------------------------------------------- /src/slashCommands/utils/invite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/slashCommands/utils/invite.js -------------------------------------------------------------------------------- /src/slashCommands/utils/leaderboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/slashCommands/utils/leaderboard.js -------------------------------------------------------------------------------- /src/slashCommands/utils/piconly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/slashCommands/utils/piconly.js -------------------------------------------------------------------------------- /src/slashCommands/utils/ping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/slashCommands/utils/ping.js -------------------------------------------------------------------------------- /src/slashCommands/utils/poll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/slashCommands/utils/poll.js -------------------------------------------------------------------------------- /src/slashCommands/utils/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/slashCommands/utils/setup.js -------------------------------------------------------------------------------- /src/slashCommands/utils/snipe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/slashCommands/utils/snipe.js -------------------------------------------------------------------------------- /src/slashCommands/utils/unrank.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/slashCommands/utils/unrank.js -------------------------------------------------------------------------------- /src/slashCommands/utils/vc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/slashCommands/utils/vc.js -------------------------------------------------------------------------------- /src/structures/OFADatabase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/structures/OFADatabase.js -------------------------------------------------------------------------------- /src/structures/OFAHandlers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/structures/OFAHandlers.js -------------------------------------------------------------------------------- /src/structures/OFAManagers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/structures/OFAManagers.js -------------------------------------------------------------------------------- /src/structures/OneForAll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/structures/OneForAll.js -------------------------------------------------------------------------------- /src/utils/Backup/lib/create.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/utils/Backup/lib/create.d.ts -------------------------------------------------------------------------------- /src/utils/Backup/lib/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/utils/Backup/lib/create.js -------------------------------------------------------------------------------- /src/utils/Backup/lib/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/utils/Backup/lib/index.d.ts -------------------------------------------------------------------------------- /src/utils/Backup/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/utils/Backup/lib/index.js -------------------------------------------------------------------------------- /src/utils/Backup/lib/load.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/utils/Backup/lib/load.d.ts -------------------------------------------------------------------------------- /src/utils/Backup/lib/load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/utils/Backup/lib/load.js -------------------------------------------------------------------------------- /src/utils/Backup/lib/types/AfkData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/utils/Backup/lib/types/AfkData.d.ts -------------------------------------------------------------------------------- /src/utils/Backup/lib/types/AfkData.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /src/utils/Backup/lib/types/BackupData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/utils/Backup/lib/types/BackupData.d.ts -------------------------------------------------------------------------------- /src/utils/Backup/lib/types/BackupData.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /src/utils/Backup/lib/types/BackupInfos.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/utils/Backup/lib/types/BackupInfos.d.ts -------------------------------------------------------------------------------- /src/utils/Backup/lib/types/BackupInfos.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /src/utils/Backup/lib/types/BanData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/utils/Backup/lib/types/BanData.d.ts -------------------------------------------------------------------------------- /src/utils/Backup/lib/types/BanData.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /src/utils/Backup/lib/types/BaseChannelData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/utils/Backup/lib/types/BaseChannelData.d.ts -------------------------------------------------------------------------------- /src/utils/Backup/lib/types/BaseChannelData.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /src/utils/Backup/lib/types/CategoryData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/utils/Backup/lib/types/CategoryData.d.ts -------------------------------------------------------------------------------- /src/utils/Backup/lib/types/CategoryData.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /src/utils/Backup/lib/types/ChannelPermissionData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/utils/Backup/lib/types/ChannelPermissionData.d.ts -------------------------------------------------------------------------------- /src/utils/Backup/lib/types/ChannelPermissionData.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /src/utils/Backup/lib/types/ChannelsData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/utils/Backup/lib/types/ChannelsData.d.ts -------------------------------------------------------------------------------- /src/utils/Backup/lib/types/ChannelsData.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /src/utils/Backup/lib/types/CreateOptions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/utils/Backup/lib/types/CreateOptions.d.ts -------------------------------------------------------------------------------- /src/utils/Backup/lib/types/CreateOptions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /src/utils/Backup/lib/types/EmojiData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/utils/Backup/lib/types/EmojiData.d.ts -------------------------------------------------------------------------------- /src/utils/Backup/lib/types/EmojiData.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /src/utils/Backup/lib/types/LoadOptions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/utils/Backup/lib/types/LoadOptions.d.ts -------------------------------------------------------------------------------- /src/utils/Backup/lib/types/LoadOptions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /src/utils/Backup/lib/types/MessageData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/utils/Backup/lib/types/MessageData.d.ts -------------------------------------------------------------------------------- /src/utils/Backup/lib/types/MessageData.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /src/utils/Backup/lib/types/RoleData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/utils/Backup/lib/types/RoleData.d.ts -------------------------------------------------------------------------------- /src/utils/Backup/lib/types/RoleData.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /src/utils/Backup/lib/types/TextChannelData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/utils/Backup/lib/types/TextChannelData.d.ts -------------------------------------------------------------------------------- /src/utils/Backup/lib/types/TextChannelData.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /src/utils/Backup/lib/types/ThreadChannelData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/utils/Backup/lib/types/ThreadChannelData.d.ts -------------------------------------------------------------------------------- /src/utils/Backup/lib/types/ThreadChannelData.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /src/utils/Backup/lib/types/VoiceChannelData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/utils/Backup/lib/types/VoiceChannelData.d.ts -------------------------------------------------------------------------------- /src/utils/Backup/lib/types/VoiceChannelData.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /src/utils/Backup/lib/types/WidgetData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/utils/Backup/lib/types/WidgetData.d.ts -------------------------------------------------------------------------------- /src/utils/Backup/lib/types/WidgetData.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /src/utils/Backup/lib/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/utils/Backup/lib/types/index.d.ts -------------------------------------------------------------------------------- /src/utils/Backup/lib/types/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/utils/Backup/lib/types/index.js -------------------------------------------------------------------------------- /src/utils/Backup/lib/util.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/utils/Backup/lib/util.d.ts -------------------------------------------------------------------------------- /src/utils/Backup/lib/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/utils/Backup/lib/util.js -------------------------------------------------------------------------------- /src/utils/DataMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/utils/DataMenu.js -------------------------------------------------------------------------------- /src/utils/Giveaway/Constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/utils/Giveaway/Constants.js -------------------------------------------------------------------------------- /src/utils/Giveaway/Giveaway.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/utils/Giveaway/Giveaway.js -------------------------------------------------------------------------------- /src/utils/Giveaway/Manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/utils/Giveaway/Manager.js -------------------------------------------------------------------------------- /src/utils/Giveaway/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/utils/Giveaway/utils.js -------------------------------------------------------------------------------- /src/utils/Xp/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/utils/Xp/index.js -------------------------------------------------------------------------------- /src/utils/check/counter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/utils/check/counter.js -------------------------------------------------------------------------------- /src/utils/check/mute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/utils/check/mute.js -------------------------------------------------------------------------------- /src/utils/check/polls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/utils/check/polls.js -------------------------------------------------------------------------------- /src/utils/check/soutien.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/utils/check/soutien.js -------------------------------------------------------------------------------- /src/utils/collection/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/utils/collection/index.d.ts -------------------------------------------------------------------------------- /src/utils/collection/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/utils/collection/index.js -------------------------------------------------------------------------------- /src/utils/defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/utils/defaults.js -------------------------------------------------------------------------------- /src/utils/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/utils/functions.js -------------------------------------------------------------------------------- /src/utils/permissions/GlobalPermissions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/utils/permissions/GlobalPermissions.js -------------------------------------------------------------------------------- /src/utils/permissions/GroupPermissions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/utils/permissions/GroupPermissions.js -------------------------------------------------------------------------------- /src/utils/permissions/MemberPermissions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/utils/permissions/MemberPermissions.js -------------------------------------------------------------------------------- /src/utils/permissions/Permissions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/src/utils/permissions/Permissions.js -------------------------------------------------------------------------------- /website/template/shop.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/website/template/shop.css -------------------------------------------------------------------------------- /website/template/shop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneforall-bot/oneforall/HEAD/website/template/shop.html --------------------------------------------------------------------------------