├── README.md ├── config └── config.example.ts ├── package.json ├── src ├── commands │ ├── admin │ │ ├── configuration │ │ │ ├── addrole.ts │ │ │ ├── role.ts │ │ │ ├── send.ts │ │ │ └── setwelcome.ts │ │ ├── send.ts │ │ └── simjoin.ts │ ├── collectors │ │ ├── message.ts │ │ └── reaction.ts │ ├── economy │ │ ├── admin │ │ │ ├── adminpay.ts │ │ │ └── adminset.ts │ │ ├── games │ │ │ └── gambling │ │ │ │ ├── blackjack.ts │ │ │ │ └── slots.ts │ │ ├── other │ │ │ ├── balance.ts │ │ │ ├── bank.ts │ │ │ ├── beg.ts │ │ │ └── daily.ts │ │ └── setup │ │ │ └── globalonoroff.ts │ ├── fun │ │ ├── activities │ │ │ ├── betrayal.ts │ │ │ ├── checkers.ts │ │ │ ├── chess.ts │ │ │ ├── doodlecrew.ts │ │ │ ├── oco.ts │ │ │ └── youtube.ts │ │ ├── add.ts │ │ ├── e.ts │ │ ├── echo.ts │ │ ├── image.ts │ │ └── music │ │ │ ├── ami.ts │ │ │ ├── getqueue.ts │ │ │ ├── jump.ts │ │ │ ├── pause.ts │ │ │ ├── play.ts │ │ │ ├── removequeue.ts │ │ │ ├── repeat.ts │ │ │ ├── resume.ts │ │ │ ├── skip.ts │ │ │ ├── stop.ts │ │ │ └── volume.ts │ ├── moderation │ │ ├── ban.ts │ │ ├── cc.ts │ │ ├── kick.ts │ │ ├── mute.ts │ │ ├── nick.ts │ │ └── warn.ts │ ├── other │ │ ├── Information │ │ │ ├── help.ts │ │ │ ├── info.ts │ │ │ ├── nameage.ts │ │ │ └── ping.ts │ │ └── utility │ │ │ ├── avatar.ts │ │ │ ├── banner.ts │ │ │ ├── color.ts │ │ │ ├── customavatar.ts │ │ │ ├── docs.ts │ │ │ ├── suggest.ts │ │ │ └── userinfo.ts │ └── owner │ │ ├── dm.ts │ │ ├── eval.ts │ │ ├── servers.ts │ │ └── status.ts ├── features │ ├── expire-punishments.ts │ ├── status-changer.ts │ ├── welcome-message.ts │ └── welcome.ts ├── functions │ └── economy.ts ├── helpers │ ├── ColorCheck.ts │ └── index.ts ├── index.ts ├── miscellaneous │ ├── addmenurole.ts │ ├── info.ts │ └── send.ts └── models │ ├── punishment-schema.ts │ ├── warn-schema.ts │ └── welcome-schema.ts └── tsconfig.json /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/README.md -------------------------------------------------------------------------------- /config/config.example.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/config/config.example.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/package.json -------------------------------------------------------------------------------- /src/commands/admin/configuration/addrole.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/commands/admin/configuration/addrole.ts -------------------------------------------------------------------------------- /src/commands/admin/configuration/role.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/commands/admin/configuration/role.ts -------------------------------------------------------------------------------- /src/commands/admin/configuration/send.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/commands/admin/configuration/send.ts -------------------------------------------------------------------------------- /src/commands/admin/configuration/setwelcome.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/commands/admin/configuration/setwelcome.ts -------------------------------------------------------------------------------- /src/commands/admin/send.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/commands/admin/send.ts -------------------------------------------------------------------------------- /src/commands/admin/simjoin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/commands/admin/simjoin.ts -------------------------------------------------------------------------------- /src/commands/collectors/message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/commands/collectors/message.ts -------------------------------------------------------------------------------- /src/commands/collectors/reaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/commands/collectors/reaction.ts -------------------------------------------------------------------------------- /src/commands/economy/admin/adminpay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/commands/economy/admin/adminpay.ts -------------------------------------------------------------------------------- /src/commands/economy/admin/adminset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/commands/economy/admin/adminset.ts -------------------------------------------------------------------------------- /src/commands/economy/games/gambling/blackjack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/commands/economy/games/gambling/blackjack.ts -------------------------------------------------------------------------------- /src/commands/economy/games/gambling/slots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/commands/economy/games/gambling/slots.ts -------------------------------------------------------------------------------- /src/commands/economy/other/balance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/commands/economy/other/balance.ts -------------------------------------------------------------------------------- /src/commands/economy/other/bank.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/commands/economy/other/bank.ts -------------------------------------------------------------------------------- /src/commands/economy/other/beg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/commands/economy/other/beg.ts -------------------------------------------------------------------------------- /src/commands/economy/other/daily.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/commands/economy/other/daily.ts -------------------------------------------------------------------------------- /src/commands/economy/setup/globalonoroff.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/commands/economy/setup/globalonoroff.ts -------------------------------------------------------------------------------- /src/commands/fun/activities/betrayal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/commands/fun/activities/betrayal.ts -------------------------------------------------------------------------------- /src/commands/fun/activities/checkers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/commands/fun/activities/checkers.ts -------------------------------------------------------------------------------- /src/commands/fun/activities/chess.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/commands/fun/activities/chess.ts -------------------------------------------------------------------------------- /src/commands/fun/activities/doodlecrew.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/commands/fun/activities/doodlecrew.ts -------------------------------------------------------------------------------- /src/commands/fun/activities/oco.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/commands/fun/activities/oco.ts -------------------------------------------------------------------------------- /src/commands/fun/activities/youtube.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/commands/fun/activities/youtube.ts -------------------------------------------------------------------------------- /src/commands/fun/add.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/commands/fun/add.ts -------------------------------------------------------------------------------- /src/commands/fun/e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/commands/fun/e.ts -------------------------------------------------------------------------------- /src/commands/fun/echo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/commands/fun/echo.ts -------------------------------------------------------------------------------- /src/commands/fun/image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/commands/fun/image.ts -------------------------------------------------------------------------------- /src/commands/fun/music/ami.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/commands/fun/music/ami.ts -------------------------------------------------------------------------------- /src/commands/fun/music/getqueue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/commands/fun/music/getqueue.ts -------------------------------------------------------------------------------- /src/commands/fun/music/jump.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/commands/fun/music/jump.ts -------------------------------------------------------------------------------- /src/commands/fun/music/pause.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/commands/fun/music/pause.ts -------------------------------------------------------------------------------- /src/commands/fun/music/play.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/commands/fun/music/play.ts -------------------------------------------------------------------------------- /src/commands/fun/music/removequeue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/commands/fun/music/removequeue.ts -------------------------------------------------------------------------------- /src/commands/fun/music/repeat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/commands/fun/music/repeat.ts -------------------------------------------------------------------------------- /src/commands/fun/music/resume.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/commands/fun/music/resume.ts -------------------------------------------------------------------------------- /src/commands/fun/music/skip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/commands/fun/music/skip.ts -------------------------------------------------------------------------------- /src/commands/fun/music/stop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/commands/fun/music/stop.ts -------------------------------------------------------------------------------- /src/commands/fun/music/volume.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/commands/fun/music/volume.ts -------------------------------------------------------------------------------- /src/commands/moderation/ban.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/commands/moderation/ban.ts -------------------------------------------------------------------------------- /src/commands/moderation/cc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/commands/moderation/cc.ts -------------------------------------------------------------------------------- /src/commands/moderation/kick.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/commands/moderation/kick.ts -------------------------------------------------------------------------------- /src/commands/moderation/mute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/commands/moderation/mute.ts -------------------------------------------------------------------------------- /src/commands/moderation/nick.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/commands/moderation/nick.ts -------------------------------------------------------------------------------- /src/commands/moderation/warn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/commands/moderation/warn.ts -------------------------------------------------------------------------------- /src/commands/other/Information/help.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/commands/other/Information/help.ts -------------------------------------------------------------------------------- /src/commands/other/Information/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/commands/other/Information/info.ts -------------------------------------------------------------------------------- /src/commands/other/Information/nameage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/commands/other/Information/nameage.ts -------------------------------------------------------------------------------- /src/commands/other/Information/ping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/commands/other/Information/ping.ts -------------------------------------------------------------------------------- /src/commands/other/utility/avatar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/commands/other/utility/avatar.ts -------------------------------------------------------------------------------- /src/commands/other/utility/banner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/commands/other/utility/banner.ts -------------------------------------------------------------------------------- /src/commands/other/utility/color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/commands/other/utility/color.ts -------------------------------------------------------------------------------- /src/commands/other/utility/customavatar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/commands/other/utility/customavatar.ts -------------------------------------------------------------------------------- /src/commands/other/utility/docs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/commands/other/utility/docs.ts -------------------------------------------------------------------------------- /src/commands/other/utility/suggest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/commands/other/utility/suggest.ts -------------------------------------------------------------------------------- /src/commands/other/utility/userinfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/commands/other/utility/userinfo.ts -------------------------------------------------------------------------------- /src/commands/owner/dm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/commands/owner/dm.ts -------------------------------------------------------------------------------- /src/commands/owner/eval.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/commands/owner/eval.ts -------------------------------------------------------------------------------- /src/commands/owner/servers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/commands/owner/servers.ts -------------------------------------------------------------------------------- /src/commands/owner/status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/commands/owner/status.ts -------------------------------------------------------------------------------- /src/features/expire-punishments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/features/expire-punishments.ts -------------------------------------------------------------------------------- /src/features/status-changer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/features/status-changer.ts -------------------------------------------------------------------------------- /src/features/welcome-message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/features/welcome-message.ts -------------------------------------------------------------------------------- /src/features/welcome.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/features/welcome.ts -------------------------------------------------------------------------------- /src/functions/economy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/functions/economy.ts -------------------------------------------------------------------------------- /src/helpers/ColorCheck.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/helpers/ColorCheck.ts -------------------------------------------------------------------------------- /src/helpers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/helpers/index.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/miscellaneous/addmenurole.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/miscellaneous/addmenurole.ts -------------------------------------------------------------------------------- /src/miscellaneous/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/miscellaneous/info.ts -------------------------------------------------------------------------------- /src/miscellaneous/send.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/miscellaneous/send.ts -------------------------------------------------------------------------------- /src/models/punishment-schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/models/punishment-schema.ts -------------------------------------------------------------------------------- /src/models/warn-schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/models/warn-schema.ts -------------------------------------------------------------------------------- /src/models/welcome-schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/src/models/welcome-schema.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParadiseB0t/Paradise-Bot/HEAD/tsconfig.json --------------------------------------------------------------------------------