├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── Bot.js ├── README.md ├── config.json ├── dbs ├── bots │ └── placeholder.txt ├── freebots │ └── placeholder.txt ├── others │ └── placeholder.txt ├── payments │ └── placeholder.txt └── settings │ └── placeholder.txt ├── ecosystem.config.js ├── embed.json ├── emoji.json ├── index.js ├── index_other_tasks.js ├── index_paypal_payment.js ├── mainconfig.js ├── modules ├── commands.js ├── commands │ ├── Hosting │ │ ├── deletebot.js │ │ └── deletebotfolder.js │ ├── Information │ │ └── help.js │ └── Setup │ │ ├── clear.js │ │ ├── editembed.js │ │ ├── embed.js │ │ ├── ensure.js │ │ ├── togglecustom.js │ │ ├── togglegeneral.js │ │ ├── togglemodmail.js │ │ ├── togglemusicbot.js │ │ ├── togglepartnerapply.js │ │ ├── togglesystembot.js │ │ ├── toggleteamapply.js │ │ └── togglewaitingroom.js ├── dashboard │ ├── index.js │ ├── lib │ │ └── swr.js │ ├── public │ │ ├── animate.css │ │ ├── bootstrap.min.css │ │ ├── index.css │ │ ├── lineicons.css │ │ ├── other.css │ │ ├── rfm.css │ │ ├── side.css │ │ ├── style.css │ │ ├── sweetalert.css │ │ ├── ud-styles.css │ │ ├── ud-styles.css.map │ │ └── user-dashboard.css │ └── views │ │ ├── createbot.ejs │ │ ├── header.ejs │ │ ├── index.ejs │ │ ├── profile.ejs │ │ ├── staff.ejs │ │ └── team.ejs ├── events │ ├── guildMemberAdd.js │ ├── guildMemberUpdate.js │ ├── ready.js │ └── threadCreate.js ├── others │ ├── autodelete.js │ ├── features.js │ ├── feedback_system.js │ ├── getleastServer.js │ ├── guess_the_number.js │ ├── payment_system.js │ ├── status_role_system.js │ ├── suggest.js │ ├── ticket_updatemsg.js │ └── verifysystem.js ├── paypal │ ├── .well-known │ │ └── acme-challenge │ │ │ └── di9iAtNnDJHqRie-gHMM2Jq7ZMi84Pl_jnHzltmSarA │ ├── assets │ │ ├── css │ │ │ └── style.css │ │ ├── img │ │ │ ├── about.png │ │ │ ├── bots │ │ │ │ ├── 24_7_Radio.png │ │ │ │ ├── ClanBot2.png │ │ │ │ ├── LavaMusic.png │ │ │ │ ├── Milrato.png │ │ │ │ ├── MilratoShop.png │ │ │ │ ├── channelmaster.png │ │ │ │ ├── chatbot.png │ │ │ │ ├── discordbotmaker.png │ │ │ │ ├── easiestapplication.png │ │ │ │ ├── easiestapplication2.png │ │ │ │ ├── globalbot.png │ │ │ │ ├── music_mixer.png │ │ │ │ ├── musicium.png │ │ │ │ ├── public_waitingroom.png │ │ │ │ ├── social_poster.png │ │ │ │ └── suggestions.png │ │ │ ├── favicon.png │ │ │ ├── hero-bg.jpg │ │ │ ├── hero-img.png │ │ │ └── team │ │ │ │ ├── team-1.jpg │ │ │ │ ├── team-2.jpg │ │ │ │ ├── team-3.jpg │ │ │ │ └── team-4.jpg │ │ ├── js │ │ │ └── main.js │ │ └── vendor │ │ │ ├── aos │ │ │ ├── aos.css │ │ │ └── aos.js │ │ │ ├── bootstrap-icons │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── bootstrap-icons.css │ │ │ ├── bootstrap-icons.json │ │ │ ├── bootstrap-icons.svg │ │ │ ├── font │ │ │ │ ├── bootstrap-icons.css │ │ │ │ ├── bootstrap-icons.json │ │ │ │ ├── bootstrap-icons.scss │ │ │ │ ├── fonts │ │ │ │ │ ├── bootstrap-icons.woff │ │ │ │ │ └── bootstrap-icons.woff2 │ │ │ │ └── index.html │ │ │ ├── fonts │ │ │ │ ├── bootstrap-icons.woff │ │ │ │ └── bootstrap-icons.woff2 │ │ │ ├── icons │ │ │ │ ├── activity.svg │ │ │ │ ├── alarm-fill.svg │ │ │ │ ├── alarm.svg │ │ │ │ ├── align-bottom.svg │ │ │ │ ├── align-center.svg │ │ │ │ ├── align-end.svg │ │ │ │ ├── align-middle.svg │ │ │ │ ├── align-start.svg │ │ │ │ ├── align-top.svg │ │ │ │ ├── alt.svg │ │ │ │ ├── app-indicator.svg │ │ │ │ ├── app.svg │ │ │ │ ├── apple.svg │ │ │ │ ├── archive-fill.svg │ │ │ │ ├── archive.svg │ │ │ │ ├── arrow-90deg-down.svg │ │ │ │ ├── arrow-90deg-left.svg │ │ │ │ ├── arrow-90deg-right.svg │ │ │ │ ├── arrow-90deg-up.svg │ │ │ │ ├── arrow-bar-down.svg │ │ │ │ ├── arrow-bar-left.svg │ │ │ │ ├── arrow-bar-right.svg │ │ │ │ ├── arrow-bar-up.svg │ │ │ │ ├── arrow-clockwise.svg │ │ │ │ ├── arrow-counterclockwise.svg │ │ │ │ ├── arrow-down-circle-fill.svg │ │ │ │ ├── arrow-down-circle.svg │ │ │ │ ├── arrow-down-left-circle-fill.svg │ │ │ │ ├── arrow-down-left-circle.svg │ │ │ │ ├── arrow-down-left-square-fill.svg │ │ │ │ ├── arrow-down-left-square.svg │ │ │ │ ├── arrow-down-left.svg │ │ │ │ ├── arrow-down-right-circle-fill.svg │ │ │ │ ├── arrow-down-right-circle.svg │ │ │ │ ├── arrow-down-right-square-fill.svg │ │ │ │ ├── arrow-down-right-square.svg │ │ │ │ ├── arrow-down-right.svg │ │ │ │ ├── arrow-down-short.svg │ │ │ │ ├── arrow-down-square-fill.svg │ │ │ │ ├── arrow-down-square.svg │ │ │ │ ├── arrow-down-up.svg │ │ │ │ ├── arrow-down.svg │ │ │ │ ├── arrow-left-circle-fill.svg │ │ │ │ ├── arrow-left-circle.svg │ │ │ │ ├── arrow-left-right.svg │ │ │ │ ├── arrow-left-short.svg │ │ │ │ ├── arrow-left-square-fill.svg │ │ │ │ ├── arrow-left-square.svg │ │ │ │ ├── arrow-left.svg │ │ │ │ ├── arrow-repeat.svg │ │ │ │ ├── arrow-return-left.svg │ │ │ │ ├── arrow-return-right.svg │ │ │ │ ├── arrow-right-circle-fill.svg │ │ │ │ ├── arrow-right-circle.svg │ │ │ │ ├── arrow-right-short.svg │ │ │ │ ├── arrow-right-square-fill.svg │ │ │ │ ├── arrow-right-square.svg │ │ │ │ ├── arrow-right.svg │ │ │ │ ├── arrow-up-circle-fill.svg │ │ │ │ ├── arrow-up-circle.svg │ │ │ │ ├── arrow-up-left-circle-fill.svg │ │ │ │ ├── arrow-up-left-circle.svg │ │ │ │ ├── arrow-up-left-square-fill.svg │ │ │ │ ├── arrow-up-left-square.svg │ │ │ │ ├── arrow-up-left.svg │ │ │ │ ├── arrow-up-right-circle-fill.svg │ │ │ │ ├── arrow-up-right-circle.svg │ │ │ │ ├── arrow-up-right-square-fill.svg │ │ │ │ ├── arrow-up-right-square.svg │ │ │ │ ├── arrow-up-right.svg │ │ │ │ ├── arrow-up-short.svg │ │ │ │ ├── arrow-up-square-fill.svg │ │ │ │ ├── arrow-up-square.svg │ │ │ │ ├── arrow-up.svg │ │ │ │ ├── arrows-angle-contract.svg │ │ │ │ ├── arrows-angle-expand.svg │ │ │ │ ├── arrows-collapse.svg │ │ │ │ ├── arrows-expand.svg │ │ │ │ ├── arrows-fullscreen.svg │ │ │ │ ├── arrows-move.svg │ │ │ │ ├── aspect-ratio-fill.svg │ │ │ │ ├── aspect-ratio.svg │ │ │ │ ├── asterisk.svg │ │ │ │ ├── at.svg │ │ │ │ ├── award-fill.svg │ │ │ │ ├── award.svg │ │ │ │ ├── back.svg │ │ │ │ ├── backspace-fill.svg │ │ │ │ ├── backspace-reverse-fill.svg │ │ │ │ ├── backspace-reverse.svg │ │ │ │ ├── backspace.svg │ │ │ │ ├── badge-3d-fill.svg │ │ │ │ ├── badge-3d.svg │ │ │ │ ├── badge-4k-fill.svg │ │ │ │ ├── badge-4k.svg │ │ │ │ ├── badge-8k-fill.svg │ │ │ │ ├── badge-8k.svg │ │ │ │ ├── badge-ad-fill.svg │ │ │ │ ├── badge-ad.svg │ │ │ │ └── badge-ar-fill.svg │ │ │ ├── index.html │ │ │ └── package.json │ │ │ ├── bootstrap │ │ │ ├── css │ │ │ │ ├── bootstrap-grid.css │ │ │ │ ├── bootstrap-grid.css.map │ │ │ │ ├── bootstrap-grid.min.css │ │ │ │ ├── bootstrap-grid.min.css.map │ │ │ │ ├── bootstrap-grid.rtl.css │ │ │ │ ├── bootstrap-grid.rtl.css.map │ │ │ │ ├── bootstrap-grid.rtl.min.css │ │ │ │ ├── bootstrap-grid.rtl.min.css.map │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ ├── bootstrap-reboot.css.map │ │ │ │ ├── bootstrap-reboot.min.css │ │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ │ ├── bootstrap-reboot.rtl.css │ │ │ │ ├── bootstrap-reboot.rtl.css.map │ │ │ │ ├── bootstrap-reboot.rtl.min.css │ │ │ │ ├── bootstrap-reboot.rtl.min.css.map │ │ │ │ ├── bootstrap-utilities.css │ │ │ │ ├── bootstrap-utilities.css.map │ │ │ │ ├── bootstrap-utilities.min.css │ │ │ │ ├── bootstrap-utilities.min.css.map │ │ │ │ ├── bootstrap-utilities.rtl.css │ │ │ │ ├── bootstrap-utilities.rtl.css.map │ │ │ │ ├── bootstrap-utilities.rtl.min.css │ │ │ │ ├── bootstrap-utilities.rtl.min.css.map │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── bootstrap.min.css.map │ │ │ │ ├── bootstrap.rtl.css │ │ │ │ ├── bootstrap.rtl.css.map │ │ │ │ ├── bootstrap.rtl.min.css │ │ │ │ └── bootstrap.rtl.min.css.map │ │ │ └── js │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ ├── bootstrap.esm.js │ │ │ │ ├── bootstrap.esm.js.map │ │ │ │ ├── bootstrap.esm.min.js │ │ │ │ ├── bootstrap.esm.min.js.map │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.js.map │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── bootstrap.min.js.map │ │ │ ├── boxicons │ │ │ ├── css │ │ │ │ ├── animations.css │ │ │ │ ├── boxicons.css │ │ │ │ ├── boxicons.min.css │ │ │ │ └── transformations.css │ │ │ └── fonts │ │ │ │ ├── boxicons.eot │ │ │ │ ├── boxicons.svg │ │ │ │ ├── boxicons.ttf │ │ │ │ ├── boxicons.woff │ │ │ │ └── boxicons.woff2 │ │ │ ├── glightbox │ │ │ ├── css │ │ │ │ ├── glightbox.css │ │ │ │ └── glightbox.min.css │ │ │ └── js │ │ │ │ ├── glightbox.js │ │ │ │ └── glightbox.min.js │ │ │ ├── php-email-form │ │ │ └── validate.js │ │ │ ├── purecounter │ │ │ └── purecounter.js │ │ │ ├── remixicon │ │ │ ├── remixicon.css │ │ │ ├── remixicon.eot │ │ │ ├── remixicon.less │ │ │ ├── remixicon.svg │ │ │ ├── remixicon.symbol.svg │ │ │ ├── remixicon.ttf │ │ │ ├── remixicon.woff │ │ │ └── remixicon.woff2 │ │ │ └── swiper │ │ │ ├── swiper-bundle.min.css │ │ │ └── swiper-bundle.min.js │ ├── cancel │ │ └── index.html │ ├── index.html │ ├── index.js │ ├── payments │ │ ├── monthlyhosted │ │ │ ├── admin.js │ │ │ ├── clan.js │ │ │ ├── modmail.js │ │ │ ├── music.js │ │ │ └── waitingroom.js │ │ ├── source │ │ │ ├── admin.js │ │ │ ├── clan.js │ │ │ ├── modmail.js │ │ │ ├── music.js │ │ │ └── waitingroom.js │ │ └── yearlyhosted │ │ │ ├── admin.js │ │ │ ├── clan.js │ │ │ ├── modmail.js │ │ │ ├── music.js │ │ │ └── waitingroom.js │ └── success │ │ ├── admin.html │ │ ├── monthlyhosted │ │ ├── admin.html │ │ ├── clan.html │ │ ├── modmail.html │ │ ├── music.html │ │ └── waitingroom.html │ │ ├── source │ │ ├── admin.html │ │ ├── clan.html │ │ ├── modmail.html │ │ ├── music.html │ │ └── waitingroom.html │ │ └── yearlyhosted │ │ ├── admin.html │ │ ├── clan.html │ │ ├── modmail.html │ │ ├── music.html │ │ └── waitingroom.html ├── tickets │ ├── OrderSystem.js │ └── TicketSystem.js └── utilfunctions.js ├── package.json ├── pm2.config.js ├── servicebots ├── MusicBots │ └── template │ │ ├── .github │ │ └── FUNDING.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── application.yml │ │ ├── botconfig │ │ ├── config.json │ │ ├── embed.json │ │ ├── emojis.json │ │ ├── radiostations.json │ │ └── settings.json │ │ ├── commands │ │ ├── ⚙️ Settings │ │ │ ├── addbotchat.js │ │ │ ├── adddj.js │ │ │ ├── autoresume.js │ │ │ ├── language.js │ │ │ ├── prefix.js │ │ │ ├── premium.js │ │ │ ├── removebotchat.js │ │ │ ├── removedj.js │ │ │ ├── reset.js │ │ │ ├── setup-embed.js │ │ │ ├── setup-music.js │ │ │ ├── toggleplaymessage.js │ │ │ └── toggleunknowncommandinfo.js │ │ ├── 🎶 Music │ │ │ ├── addprevious.js │ │ │ ├── addsimilar.js │ │ │ ├── autoplay.js │ │ │ ├── clearqueue.js │ │ │ ├── forceskip.js │ │ │ ├── forward.js │ │ │ ├── grab.js │ │ │ ├── join.js │ │ │ ├── jump.js │ │ │ ├── loop.js │ │ │ ├── loopqueue.js │ │ │ ├── loopsong.js │ │ │ ├── move.js │ │ │ ├── moveme.js │ │ │ ├── nowplaying.js │ │ │ ├── pause.js │ │ │ ├── play.js │ │ │ ├── playlist.js │ │ │ ├── playmusicmix.js │ │ │ ├── playprevious.js │ │ │ ├── playsc.js │ │ │ ├── playskip.js │ │ │ ├── playskipsc.js │ │ │ ├── playtop.js │ │ │ ├── playtopsc.js │ │ │ ├── queue.js │ │ │ ├── queuestatus.js │ │ │ ├── radio.js │ │ │ ├── removedupes.js │ │ │ ├── removetrack.js │ │ │ ├── restart.js │ │ │ ├── resume.js │ │ │ ├── rewind.js │ │ │ ├── search.js │ │ │ ├── searchradio.js │ │ │ ├── searchsc.js │ │ │ ├── searchsimilar.js │ │ │ ├── seek.js │ │ │ ├── shuffle.js │ │ │ ├── skip.js │ │ │ ├── stop.js │ │ │ ├── stoploop.js │ │ │ ├── unshuffle.js │ │ │ └── volume.js │ │ ├── 👀 Filter │ │ │ ├── 3d.js │ │ │ ├── bassboost.js │ │ │ ├── china.js │ │ │ ├── chipmunk.js │ │ │ ├── cleareq.js │ │ │ ├── clearfilter.js │ │ │ ├── darthvader.js │ │ │ ├── equalizer.js │ │ │ ├── nightcore.js │ │ │ ├── pitch.js │ │ │ ├── rate.js │ │ │ ├── slowmo.js │ │ │ ├── speed.js │ │ │ ├── tremolo.js │ │ │ ├── vibrate.js │ │ │ └── vibrato.js │ │ ├── 👑 Owner │ │ │ ├── botfilename.js │ │ │ ├── changeavatar.js │ │ │ ├── changename.js │ │ │ ├── changeprefix.js │ │ │ ├── changestatus.js │ │ │ ├── cmdreload.js │ │ │ ├── deployslash.js │ │ │ ├── eval.js │ │ │ ├── leaveserver.js │ │ │ └── togglepremium.js │ │ ├── 💰 Premium │ │ │ ├── afk.js │ │ │ ├── defaultautoplay.js │ │ │ ├── defaultequalizer.js │ │ │ ├── defaultvolume.js │ │ │ └── savedqueue.js │ │ └── 🔰 Info │ │ │ ├── botinfo.js │ │ │ ├── commandcount.js │ │ │ ├── developer.js │ │ │ ├── help.js │ │ │ ├── invite.js │ │ │ ├── ping.js │ │ │ ├── sponsor.js │ │ │ ├── stats.js │ │ │ ├── support.js │ │ │ └── uptime.js │ │ ├── databases │ │ ├── musicsettings │ │ │ └── Placeholder.txt │ │ ├── premium │ │ │ └── placeholder.txt │ │ ├── queuesaves │ │ │ └── placeholder.txt │ │ ├── settings │ │ │ └── placeholder.txt │ │ └── stats │ │ │ └── placeholder.txt │ │ ├── ecosystem.config.js │ │ ├── events │ │ ├── client │ │ │ ├── debug.js │ │ │ ├── disconnect.js │ │ │ ├── error.js │ │ │ ├── rateLimit.js │ │ │ ├── raw.js │ │ │ ├── ready.js │ │ │ ├── reconnecting.js │ │ │ ├── shardDisconnect.js │ │ │ ├── shardError.js │ │ │ ├── shardReady.js │ │ │ ├── shardReconnecting.js │ │ │ ├── shardResume.js │ │ │ └── warn.js │ │ └── guild │ │ │ ├── channelDelete.js │ │ │ ├── guildCreate.js │ │ │ ├── guildDelete.js │ │ │ ├── guildRemove.js │ │ │ ├── interactionCreate.js │ │ │ ├── messageCreate.js │ │ │ ├── threadCreate.js │ │ │ └── voiceStateUpdate.js │ │ ├── handlers │ │ ├── clientvariables.js │ │ ├── command.js │ │ ├── erela_events │ │ │ ├── creation.js │ │ │ ├── events.js │ │ │ ├── musicsystem.js │ │ │ └── node_events.js │ │ ├── erelahandler.js │ │ ├── events.js │ │ ├── extraevents.js │ │ ├── functions.js │ │ ├── loaddb.js │ │ ├── playermanager.js │ │ ├── playermanagers │ │ │ ├── playlist.js │ │ │ ├── playtop.js │ │ │ ├── request.js │ │ │ ├── search.js │ │ │ ├── similar.js │ │ │ ├── skiptrack.js │ │ │ └── song.js │ │ └── slashCommands.js │ │ ├── index.js │ │ ├── languages │ │ ├── de.json │ │ ├── en.json │ │ ├── fr.json │ │ ├── ir.json │ │ └── kr.json │ │ ├── package.json │ │ └── slashCommands │ │ ├── autoplay.js │ │ ├── clearqueue.js │ │ ├── forward.js │ │ ├── invite.js │ │ ├── join.js │ │ ├── loop.js │ │ ├── musicmix.js │ │ ├── nowplaying.js │ │ ├── pause.js │ │ ├── play.js │ │ ├── playsc.js │ │ ├── playskip.js │ │ ├── playskipsc.js │ │ ├── playtop.js │ │ ├── queue.js │ │ ├── replay.js │ │ ├── resume.js │ │ ├── rewind.js │ │ ├── search.js │ │ ├── seek.js │ │ ├── shuffle.js │ │ ├── skip.js │ │ ├── stop.js │ │ ├── support.js │ │ ├── unshuffle.js │ │ └── volume.js └── SYSTEMBOTS │ └── template │ ├── .github │ ├── .github │ │ └── FUNDING.yml │ ├── FUNDING.yml │ └── ISSUE_TEMPLATE │ │ ├── bug_report.md │ │ ├── check-faq-and-wikis-first-.md │ │ ├── feature_request.md │ │ └── get-general-help.md │ ├── LICENSE │ ├── README.md │ ├── assets │ ├── base.png │ ├── bot.png │ ├── first_leaderboard.png │ ├── fonts │ │ ├── AppleSymbol.ttf │ │ ├── Arial.ttf │ │ ├── ArialUnicode.ttf │ │ ├── DMSans-Bold.ttf │ │ ├── DMSans-Regular.ttf │ │ ├── Genta.ttf │ │ ├── STIXGeneral.ttf │ │ ├── UbuntuMono-Italic.ttf │ │ └── UbuntuMono.ttf │ ├── levelup.png │ ├── rankcard.png │ ├── voice_leaderboard.png │ └── welcome │ │ ├── #030303 │ │ ├── welcome1frame.png │ │ ├── welcome1framepb.png │ │ ├── welcome2frame_oben.png │ │ ├── welcome2frame_unten.png │ │ └── welcome3frame.png │ │ ├── #25FA6C │ │ ├── welcome1frame.png │ │ ├── welcome1framepb.png │ │ ├── welcome2frame_oben.png │ │ ├── welcome2frame_unten.png │ │ └── welcome3frame.png │ │ ├── #3A98F0 │ │ ├── welcome1frame.png │ │ ├── welcome1framepb.png │ │ ├── welcome2frame_oben.png │ │ ├── welcome2frame_unten.png │ │ └── welcome3frame.png │ │ ├── #8525FA │ │ ├── welcome1frame.png │ │ ├── welcome1framepb.png │ │ ├── welcome2frame_oben.png │ │ ├── welcome2frame_unten.png │ │ └── welcome3frame.png │ │ ├── #FA2525 │ │ ├── welcome1frame.png │ │ ├── welcome1framepb.png │ │ ├── welcome2frame_oben.png │ │ ├── welcome2frame_unten.png │ │ └── welcome3frame.png │ │ ├── #FA9E25 │ │ ├── welcome1frame.png │ │ ├── welcome1framepb.png │ │ ├── welcome2frame_oben.png │ │ ├── welcome2frame_unten.png │ │ └── welcome3frame.png │ │ ├── #FAFA25 │ │ ├── welcome1frame.png │ │ ├── welcome1framepb.png │ │ ├── welcome2frame_oben.png │ │ ├── welcome2frame_unten.png │ │ └── welcome3frame.png │ │ ├── #FFFFF9 │ │ ├── welcome1frame.png │ │ ├── welcome1framepb.png │ │ ├── welcome2frame_oben.png │ │ ├── welcome2frame_unten.png │ │ └── welcome3frame.png │ │ └── WHITE │ │ ├── welcome1frame.png │ │ ├── welcome1framepb.png │ │ ├── welcome2frame_oben.png │ │ ├── welcome2frame_unten.png │ │ └── welcome3frame.png │ ├── botconfig │ ├── advertisement.json │ ├── config.json │ ├── embed.json │ ├── emojis.json │ ├── radiostations.json │ ├── settings.json │ └── songoftheday.json │ ├── commands │ ├── ⌨️ Programming │ │ ├── coliru.js │ │ ├── compile.js │ │ ├── github.js │ │ ├── httpstatus.js │ │ ├── npm.js │ │ └── npmpkgsize.js │ ├── ⚙️ Settings │ │ ├── addbotchat.js │ │ ├── adddj.js │ │ ├── addmoney.js │ │ ├── afk.js │ │ ├── afkmusic.js │ │ ├── defaultautoplay.js │ │ ├── defaultequalizer.js │ │ ├── defaultvolume.js │ │ ├── playmsg.js │ │ ├── prefix.js │ │ ├── removebotchat.js │ │ ├── removedj.js │ │ ├── removemoney.js │ │ ├── reset.js │ │ ├── toggledisabled.js │ │ ├── toggledjonly.js │ │ ├── toggledm.js │ │ ├── toggleplaymessage.js │ │ ├── togglepruning.js │ │ ├── togglerequestonly.js │ │ └── toggleunknowncommandinfo.js │ ├── ⚜️ Custom Queue(s) │ │ └── savedqueue.js │ ├── 🎤 Voice │ │ └── voice.js │ ├── 🎮 MiniGames │ │ ├── 2024.js │ │ ├── bent.js │ │ ├── betrayal-io.js │ │ ├── chaoswords.js │ │ ├── chess.js │ │ ├── connect4.js │ │ ├── fasttype.js │ │ ├── fight.js │ │ ├── fishington-io.js │ │ ├── flip.js │ │ ├── guessthenumber.js │ │ ├── guessthepokemon.js │ │ ├── hangman.js │ │ ├── lieswatter.js │ │ ├── mirror.js │ │ ├── neverhaveiever.js │ │ ├── pokemon.js │ │ ├── poker-night.js │ │ ├── quickclick.js │ │ ├── randomcase.js │ │ ├── randomcolor.js │ │ ├── reverse.js │ │ ├── rockpaperscissors.js │ │ ├── shuffleguess.js │ │ ├── snake.js │ │ ├── sudo.js │ │ ├── tictactoe.js │ │ ├── tiny.js │ │ ├── trivia.js │ │ ├── uno.js │ │ ├── vaporwave.js │ │ ├── willyoupressthebutton.js │ │ ├── wouldyourather.js │ │ └── youtubetogether.js │ ├── 🎶 Music │ │ ├── addprevious.js │ │ ├── addsimilar.js │ │ ├── autoplay.js │ │ ├── clearqueue.js │ │ ├── forceskip.js │ │ ├── forward.js │ │ ├── grab.js │ │ ├── join.js │ │ ├── jump.js │ │ ├── loop.js │ │ ├── loopqueue.js │ │ ├── loopsong.js │ │ ├── lyrics.js │ │ ├── move.js │ │ ├── moveme.js │ │ ├── nowplaying.js │ │ ├── pause.js │ │ ├── play.js │ │ ├── playlist.js │ │ ├── playmusicmix.js │ │ ├── playprevious.js │ │ ├── playsc.js │ │ ├── playskip.js │ │ ├── playskipsc.js │ │ ├── playsongoftheday.js │ │ ├── playtop.js │ │ ├── queue.js │ │ ├── queuestatus.js │ │ ├── radio.js │ │ ├── reconnect.js │ │ ├── removedupes.js │ │ ├── removetrack.js │ │ ├── removevoteskip.js │ │ ├── restart.js │ │ ├── resume.js │ │ ├── rewind.js │ │ ├── search.js │ │ ├── searchplaylist.js │ │ ├── searchradio.js │ │ ├── searchsc.js │ │ ├── searchsimilar.js │ │ ├── seek.js │ │ ├── shuffle.js │ │ ├── skip.js │ │ ├── stop.js │ │ ├── stoploop.js │ │ ├── unshuffle.js │ │ ├── volume.js │ │ └── voteskip.js │ ├── 🏫 School Commands │ │ ├── calc.js │ │ ├── calculator.js │ │ ├── e.js │ │ ├── pi.js │ │ └── remind.js │ ├── 👀 Filter │ │ ├── 3d.js │ │ ├── bassboost.js │ │ ├── china.js │ │ ├── chipmunk.js │ │ ├── cleareq.js │ │ ├── clearfilter.js │ │ ├── darthvader.js │ │ ├── equalizer.js │ │ ├── nightcore.js │ │ ├── pitch.js │ │ ├── rate.js │ │ ├── slowmo.js │ │ ├── speed.js │ │ ├── tremolo.js │ │ ├── vibrate.js │ │ └── vibrato.js │ ├── 👑 Owner │ │ ├── addmoney.js │ │ ├── botfilename.js │ │ ├── changeavatar.js │ │ ├── changename.js │ │ ├── changeprefix.js │ │ ├── changestatus.js │ │ ├── cmdreload.js │ │ ├── deployslash.js │ │ ├── detailedeval.js │ │ ├── eval.js │ │ ├── leaveserver.js │ │ ├── reloadallcmds.js │ │ ├── reloadbot.js │ │ ├── removemoney.js │ │ ├── resetsettings.js │ │ ├── restartbot.js │ │ ├── setup-advertise.js │ │ ├── setup-owner.js │ │ └── stopbot.js │ ├── 💪 Setup │ │ ├── setup-admin.js │ │ ├── setup-admincmdlog.js │ │ ├── setup-aichat.js │ │ ├── setup-anticaps.js │ │ ├── setup-antidiscord.js │ │ ├── setup-antilink.js │ │ ├── setup-antimassmention.js │ │ ├── setup-antimasspings.js │ │ ├── setup-antimention.js │ │ ├── setup-antinewaccount.js │ │ ├── setup-antinuke.js │ │ ├── setup-antipings.js │ │ ├── setup-antispam.js │ │ ├── setup-apply.js │ │ ├── setup-auditlog.js │ │ ├── setup-autobackup.js │ │ ├── setup-autodelete.js │ │ ├── setup-autoembed.js │ │ ├── setup-automeme.js │ │ ├── setup-autonsfw.js │ │ ├── setup-autosupport.js │ │ ├── setup-autowarn.js │ │ ├── setup-blacklist.js │ │ ├── setup-boost.js │ │ ├── setup-boostlog.js │ │ ├── setup-commands.js │ │ ├── setup-counter.js │ │ ├── setup-customcommand.js │ │ ├── setup-dailyfact.js │ │ ├── setup-embed.js │ │ ├── setup-epicgamesverify.js │ │ ├── setup-ghost-ping-detector.js │ │ ├── setup-joinlist.js │ │ ├── setup-joinvc.js │ │ ├── setup-jtc.js │ │ ├── setup-keyword.js │ │ ├── setup-language.js │ │ ├── setup-leave.js │ │ ├── setup-logger.js │ │ ├── setup-membercount.js │ │ ├── setup-menuapply.js │ │ ├── setup-menuticket.js │ │ ├── setup-music.js │ │ ├── setup-mute.js │ │ ├── setup-radio.js │ │ ├── setup-rank.js │ │ ├── setup-reactionrole.js │ │ ├── setup-reportlog.js │ │ ├── setup-roster.js │ │ ├── setup-serverstats.js │ │ ├── setup-suggestion.js │ │ ├── setup-ticket.js │ │ ├── setup-tiktok.js │ │ ├── setup-twitch.js │ │ ├── setup-twitter.js │ │ ├── setup-validcode.js │ │ ├── setup-warn.js │ │ ├── setup-welcome.js │ │ ├── setup-youtube.js │ │ └── setup.js │ ├── 💸 Economy │ │ ├── balance.js │ │ ├── bank.js │ │ ├── beg.js │ │ ├── blackmarket.js │ │ ├── buy.js │ │ ├── coinflip.js │ │ ├── crime.js │ │ ├── daily.js │ │ ├── deposit.js │ │ ├── dice.js │ │ ├── ecohelp.js │ │ ├── ecolb.js │ │ ├── hourly.js │ │ ├── inventory.js │ │ ├── items.js │ │ ├── monthly.js │ │ ├── pay.js │ │ ├── profile.js │ │ ├── rob.js │ │ ├── sell.js │ │ ├── slots.js │ │ ├── storeinfo.js │ │ ├── transfer.js │ │ ├── weekly.js │ │ ├── withdraw.js │ │ └── work.js │ ├── 📈 Ranking │ │ ├── addlevel.js │ │ ├── addpoints.js │ │ ├── addrandomall.js │ │ ├── leaderboard.js │ │ ├── levelinghelp.js │ │ ├── rank.js │ │ ├── registerall.js │ │ ├── removelevel.js │ │ ├── removepoints.js │ │ ├── resetranking.js │ │ ├── resetrankingall.js │ │ ├── setlevel.js │ │ ├── setpoints.js │ │ ├── voiceleaderboard.js │ │ └── voicerank.js │ ├── 🔊 Soundboard │ │ ├── a-wow.js │ │ ├── abdi.js │ │ ├── afewmomentslater.js │ │ ├── ahshit.js │ │ ├── airhorn.js │ │ ├── amogus.js │ │ ├── araara.js │ │ ├── audio │ │ │ ├── a-wow.m4a │ │ │ ├── abdi.mp3 │ │ │ ├── afewmomentslater.m4a │ │ │ ├── ahshit.mp3 │ │ │ ├── airhorn.m4a │ │ │ ├── amogus.m4a │ │ │ ├── araara.mp3 │ │ │ ├── bhau.mp3 │ │ │ ├── bruh.mp3 │ │ │ ├── cuteuwu.mp3 │ │ │ ├── dattebayo.m4a │ │ │ ├── disconnected.mp3 │ │ │ ├── fart.mp3 │ │ │ ├── game-over.wav │ │ │ ├── giggle.mp3 │ │ │ ├── gimme-ohyeah.m4a │ │ │ ├── ha-gay.mp3 │ │ │ ├── hellomf.mp3 │ │ │ ├── honk.mp3 │ │ │ ├── ilikecutg.m4a │ │ │ ├── illuminati.m4a │ │ │ ├── iphone-notification.m4a │ │ │ ├── john-cena.mp3 │ │ │ ├── kuss-digga.mp3 │ │ │ ├── laugh.mp3 │ │ │ ├── magic.mp3 │ │ │ ├── margayamc.mp3 │ │ │ ├── moin-meister.mp3 │ │ │ ├── nani.mp3 │ │ │ ├── nogodno.m4a │ │ │ ├── oioi.mp3 │ │ │ ├── oioioi.mp3 │ │ │ ├── onichan.mp3 │ │ │ ├── pew-pew.mp3 │ │ │ ├── ph-intro.mp3 │ │ │ ├── quack-quack.mp3 │ │ │ ├── rickroll.mp3 │ │ │ ├── samsung-notification.m4a │ │ │ ├── sheesh.mp3 │ │ │ ├── sike.m4a │ │ │ ├── silly-fart.mp3 │ │ │ ├── skype.m4a │ │ │ ├── suiii.mp3 │ │ │ ├── superidol.m4a │ │ │ ├── surprisemf.mp3 │ │ │ ├── sus.m4a │ │ │ ├── uwu.mp3 │ │ │ ├── verpissdich.mp3 │ │ │ ├── wetfart.m4a │ │ │ ├── wow.mp3 │ │ │ └── wryd-stepbro.m4a │ │ ├── bhau.js │ │ ├── bruh.js │ │ ├── cuteuwu.js │ │ ├── dattebayo.js │ │ ├── disconnected.js │ │ ├── fart.js │ │ ├── game-over.js │ │ ├── giggle.js │ │ ├── gimme-ohyeah.js │ │ ├── ha-gay.js │ │ ├── hellomf.js │ │ ├── honk.js │ │ ├── ilikecutg.js │ │ ├── illuminati.js │ │ ├── iphone-notification.js │ │ ├── john-cena.js │ │ ├── kuss-digga.js │ │ ├── laugh.js │ │ ├── magic.js │ │ ├── margayamc.js │ │ ├── moin-meister.js │ │ ├── nani.js │ │ ├── nogodno.js │ │ ├── oioi.js │ │ ├── oioioi.js │ │ ├── onichan.js │ │ ├── pew-pew.js │ │ ├── ph-intro.js │ │ ├── quack-quack.js │ │ ├── rickroll.js │ │ ├── samsung-notification.js │ │ ├── sheesh.js │ │ ├── sike.js │ │ ├── silly-fart.js │ │ ├── skype.js │ │ ├── suiii.js │ │ ├── superidol.js │ │ ├── surprisemf.js │ │ ├── sus.js │ │ ├── uwu.js │ │ ├── verpissdich.js │ │ ├── wetfart.js │ │ ├── wow.js │ │ └── wryd-stepbro.js │ ├── 🔞 NSFW │ │ ├── 2danal.js │ │ ├── 2dboobs.js │ │ ├── 2dfeet.js │ │ ├── 2dtits.js │ │ ├── 2feetgif.js │ │ ├── 3d-porn.js │ │ ├── 4k.js │ │ ├── aesthetic.js │ │ ├── amateur.js │ │ ├── anal-db.js │ │ ├── anal.js │ │ ├── asian.js │ │ ├── asmr.js │ │ ├── ass-db.js │ │ ├── ass.js │ │ ├── bath-shower.js │ │ ├── bdsm.js │ │ ├── bj.js │ │ ├── blowjob.js │ │ ├── boobs-db.js │ │ ├── boobs.js │ │ ├── cock.js │ │ ├── cosplay.js │ │ ├── creampie.js │ │ ├── cuckhold.js │ │ ├── cumshots.js │ │ ├── cumslut.js │ │ ├── danbooru.js │ │ ├── db │ │ │ ├── 3d-porn.json │ │ │ ├── aesthetic.json │ │ │ ├── amateur.json │ │ │ ├── anal.json │ │ │ ├── asian.json │ │ │ ├── asmr.json │ │ │ ├── ass.json │ │ │ ├── bath-shower.json │ │ │ ├── bdsm.json │ │ │ ├── boobs.json │ │ │ ├── cock.json │ │ │ ├── cosplay.json │ │ │ ├── creampie.json │ │ │ ├── cuckhold.json │ │ │ ├── cumshots.json │ │ │ ├── dilf.json │ │ │ ├── double-penetration.json │ │ │ ├── ebony.json │ │ │ ├── feet.json │ │ │ ├── femdom.json │ │ │ ├── fisting.json │ │ │ ├── food-play.json │ │ │ ├── funny.json │ │ │ ├── furry.json │ │ │ ├── glory-hole.json │ │ │ ├── goth.json │ │ │ ├── hands.json │ │ │ ├── hentai-no-loli.json │ │ │ ├── hentai.json │ │ │ ├── horror.json │ │ │ ├── interracial.json │ │ │ ├── joi.json │ │ │ ├── lactation.json │ │ │ ├── latin.json │ │ │ ├── lgbt-bisexual.json │ │ │ ├── lgbt-femboy.json │ │ │ ├── lgbt-gay.json │ │ │ ├── lgbt-lesbian.json │ │ │ ├── lgbt-transgender.json │ │ │ ├── lgbt-twink.json │ │ │ ├── lingerie.json │ │ │ ├── massage.json │ │ │ ├── mature.json │ │ │ ├── milf.json │ │ │ ├── naked-wrestling.json │ │ │ ├── oral.json │ │ │ ├── orgy.json │ │ │ ├── pegging.json │ │ │ ├── petite.json │ │ │ ├── piss.json │ │ │ ├── plus-size.json │ │ │ ├── pornstar.json │ │ │ ├── pov.json │ │ │ ├── public.json │ │ │ ├── pussy.json │ │ │ ├── rimming.json │ │ │ ├── rough.json │ │ │ ├── solo.json │ │ │ ├── squirting.json │ │ │ ├── tattoos-piercings.json │ │ │ ├── tease.json │ │ │ ├── thighs.json │ │ │ ├── threesomes.json │ │ │ ├── toys.json │ │ │ ├── uniform.json │ │ │ └── vintage.json │ │ ├── dilf.js │ │ ├── double-penetration.js │ │ ├── ebony.js │ │ ├── ero.js │ │ ├── erokitsune.js │ │ ├── eroyuri.js │ │ ├── feet.js │ │ ├── femdom-db.js │ │ ├── femdom.js │ │ ├── fisting.js │ │ ├── food-play.js │ │ ├── foxgirl.js │ │ ├── funny.js │ │ ├── furry.js │ │ ├── futanari.js │ │ ├── gasm.js │ │ ├── gelbooru.js │ │ ├── girlsolo.js │ │ ├── girlsologif.js │ │ ├── glory-hole.js │ │ ├── goth.js │ │ ├── hands.js │ │ ├── hass.js │ │ ├── hboobs.js │ │ ├── hentai-db.js │ │ ├── hentai-no-loli.js │ │ ├── hentai.js │ │ ├── hentai2.js │ │ ├── hentaigif.js │ │ ├── hmidriff.js │ │ ├── holo.js │ │ ├── holoero.js │ │ ├── horror.js │ │ ├── interracial.js │ │ ├── joi.js │ │ ├── keta.js │ │ ├── kitsune.js │ │ ├── kuni.js │ │ ├── lactation.js │ │ ├── latin.js │ │ ├── lesbian.js │ │ ├── lewdneko.js │ │ ├── lewdnekogif.js │ │ ├── lgbt-femboy.js │ │ ├── lgbt-gay.js │ │ ├── lgbt-lesbian.js │ │ ├── lgbt-transgender.js │ │ ├── lgbt-twink.js │ │ ├── lingerie.js │ │ ├── massage.js │ │ ├── mature.js │ │ ├── milf.js │ │ ├── naked-wrestling.js │ │ ├── nekoapiclassic.js │ │ ├── oral.js │ │ ├── orgy.js │ │ ├── pegging.js │ │ ├── petite.js │ │ ├── pgif.js │ │ ├── piss.js │ │ ├── plus-size.js │ │ ├── porn.js │ │ ├── pornstar.js │ │ ├── pov.js │ │ ├── public.js │ │ ├── pussy-db.js │ │ ├── pussy.js │ │ ├── pussywank.js │ │ ├── r34.js │ │ ├── rimming.js │ │ ├── rough.js │ │ ├── solo.js │ │ ├── spank.js │ │ ├── squirting.js │ │ ├── tattoos-piercings.js │ │ ├── tease.js │ │ ├── thighs.js │ │ ├── threesomes.js │ │ ├── toys.js │ │ ├── trap.js │ │ ├── uniform.js │ │ ├── vintage.js │ │ ├── waifu.js │ │ └── yuri.js │ ├── 🔰 Info │ │ ├── addquote.js │ │ ├── avatar.js │ │ ├── botfaq.js │ │ ├── botinfo.js │ │ ├── color.js │ │ ├── commandcount.js │ │ ├── connectioninfo.js │ │ ├── customavatar.js │ │ ├── developer.js │ │ ├── emojiinfo.js │ │ ├── enlarge.js │ │ ├── epic.js │ │ ├── fnshop.js │ │ ├── fnstats.js │ │ ├── getInviteChannel.js │ │ ├── github.js │ │ ├── help.js │ │ ├── invite.js │ │ ├── invites.js │ │ ├── invitesleaderboard.js │ │ ├── latestquotes.js │ │ ├── membercount.js │ │ ├── modstats.js │ │ ├── notes.js │ │ ├── permissions.js │ │ ├── ping.js │ │ ├── quotes.js │ │ ├── reactions.js │ │ ├── removequote.js │ │ ├── roleinfo.js │ │ ├── serveravatar.js │ │ ├── serverbanner.js │ │ ├── serverinfo.js │ │ ├── servers.js │ │ ├── showblacklist.js │ │ ├── sponsor.js │ │ ├── stats.js │ │ ├── support.js │ │ ├── tiktokinfo.js │ │ ├── translate.js │ │ ├── twitterinfo.js │ │ ├── uptime.js │ │ ├── userbanner.js │ │ ├── userid.js │ │ ├── userinfo.js │ │ ├── usertag.js │ │ └── youtubeinfo.js │ ├── 🕹️ Fun │ │ ├── 8ball.js │ │ ├── abandon.js │ │ ├── affect.js │ │ ├── airpods.js │ │ ├── amazeme.js │ │ ├── america.js │ │ ├── armor.js │ │ ├── beautiful.js │ │ ├── bed.js │ │ ├── blur.js │ │ ├── brazzers.js │ │ ├── byemom.js │ │ ├── cancer.js │ │ ├── changemymind.js │ │ ├── chat.js │ │ ├── circle.js │ │ ├── communism.js │ │ ├── corporate.js │ │ ├── cry.js │ │ ├── dab.js │ │ ├── delete.js │ │ ├── disability.js │ │ ├── door.js │ │ ├── drake.js │ │ ├── egg.js │ │ ├── emergencymeeting.js │ │ ├── excuseme.js │ │ ├── facepalm.js │ │ ├── fact.js │ │ ├── facts.js │ │ ├── failure.js │ │ ├── fakenews.js │ │ ├── floor.js │ │ ├── godwhy.js │ │ ├── greyscale.js │ │ ├── hitler.js │ │ ├── invert.js │ │ ├── ipad.js │ │ ├── jail.js │ │ ├── joke.js │ │ ├── jokeOverHead.js │ │ ├── keepdistance.js │ │ ├── kill.js │ │ ├── kiss.js │ │ ├── meme.js │ │ ├── note.js │ │ ├── notstonks.js │ │ ├── obama.js │ │ ├── ohno.js │ │ ├── piccolo.js │ │ ├── rainbow.js │ │ ├── rip.js │ │ ├── roblox.js │ │ ├── satan.js │ │ ├── savehumanity.js │ │ ├── sepia.js │ │ ├── shit.js │ │ ├── stonks.js │ │ ├── stroke.js │ │ ├── test.js │ │ ├── tornado.js │ │ ├── trash.js │ │ ├── trigger.js │ │ ├── tweet.js │ │ ├── violence.js │ │ ├── walking.js │ │ ├── wanted.js │ │ ├── wasted.js │ │ ├── weather.js │ │ ├── whodidthis.js │ │ └── youtube.js │ ├── 😳 Anime-Emotions │ │ ├── a-agree.js │ │ ├── a-baka.js │ │ ├── a-bite.js │ │ ├── a-blush.js │ │ ├── a-bonk.js │ │ ├── a-bored.js │ │ ├── a-bully.js │ │ ├── a-confused.js │ │ ├── a-cry.js │ │ ├── a-cuddle.js │ │ ├── a-dance.js │ │ ├── a-goodnight.js │ │ ├── a-happy.js │ │ ├── a-highfive.js │ │ ├── a-hug.js │ │ ├── a-kick.js │ │ ├── a-kill.js │ │ ├── a-kiss.js │ │ ├── a-nervous.js │ │ ├── a-pat.js │ │ ├── a-poke.js │ │ ├── a-punch.js │ │ ├── a-sad.js │ │ ├── a-scream.js │ │ ├── a-slap.js │ │ ├── a-smile.js │ │ ├── a-stare.js │ │ ├── a-thinking.js │ │ ├── a-wallpaper.js │ │ ├── a-wave.js │ │ ├── a-wink.js │ │ ├── a-yeet.js │ │ ├── a-yes.js │ │ └── a-zerotwo.js │ └── 🚫 Administration │ │ ├── addrole.js │ │ ├── addroletobots.js │ │ ├── addroletoeveryone.js │ │ ├── addroletohumans.js │ │ ├── addroletorole.js │ │ ├── archivethread.js │ │ ├── ban.js │ │ ├── bans.js │ │ ├── channellock.js │ │ ├── channelunlock.js │ │ ├── clear.js │ │ ├── clearbotmessages.js │ │ ├── close.js │ │ ├── copymessage.js │ │ ├── createbackup.js │ │ ├── deletechannel.js │ │ ├── deleterole.js │ │ ├── deletethread.js │ │ ├── detailwarn.js │ │ ├── dm.js │ │ ├── editembed.js │ │ ├── editimgembed.js │ │ ├── embed.js │ │ ├── embedbuilder.js │ │ ├── esay.js │ │ ├── giveaway.js │ │ ├── globalwarnings.js │ │ ├── idban.js │ │ ├── image.js │ │ ├── imgembed.js │ │ ├── instantclose.js │ │ ├── instantdelete.js │ │ ├── jointhread.js │ │ ├── jointhreads.js │ │ ├── kick.js │ │ ├── leavethread.js │ │ ├── listbackups.js │ │ ├── listbans.js │ │ ├── loadbackup.js │ │ ├── lockchannel.js │ │ ├── lockthread.js │ │ ├── manageinvites.js │ │ ├── mute.js │ │ ├── nickname.js │ │ ├── permamute.js │ │ ├── poll.js │ │ ├── react.js │ │ ├── removeallwarns.js │ │ ├── removerole.js │ │ ├── removerolefrombots.js │ │ ├── removerolefromeveryone.js │ │ ├── removerolefromhumans.js │ │ ├── removerolefromrole.js │ │ ├── removetimeout.js │ │ ├── report.js │ │ ├── say.js │ │ ├── setautoarchiveduration.js │ │ ├── slowmode.js │ │ ├── snipe.js │ │ ├── suggest.js │ │ ├── sync-invites.js │ │ ├── tempmute.js │ │ ├── timeout.js │ │ ├── unarchivethread.js │ │ ├── unban.js │ │ ├── unlockchannel.js │ │ ├── unlockthread.js │ │ ├── unmute.js │ │ ├── unwarn.js │ │ ├── updatemessage.js │ │ ├── useridban.js │ │ ├── warn.js │ │ └── warnings.js │ ├── databases │ ├── antinuke │ │ └── placeholder.txt │ ├── apply │ │ ├── enmap.sqlite │ │ ├── enmap.sqlite-wal │ │ └── placeholder.txt │ ├── apply2 │ │ ├── enmap.sqlite │ │ └── placeholder.txt │ ├── apply3 │ │ ├── enmap.sqlite │ │ └── placeholder.txt │ ├── apply4 │ │ ├── enmap.sqlite │ │ └── placeholder.txt │ ├── apply5 │ │ ├── enmap.sqlite │ │ └── placeholder.txt │ ├── blacklist │ │ └── placeholder.txt │ ├── customcommands │ │ └── placeholder.txt │ ├── economy │ │ └── placeholder.txt │ ├── jointocreatemap │ │ └── placeholder.txt │ ├── jtc1 │ │ └── placeholder.txt │ ├── jtc2 │ │ └── placeholder.txt │ ├── jtc3 │ │ └── placeholder.txt │ ├── keyword │ │ └── placeholder.txt │ ├── menuticket │ │ ├── enmap.sqlite │ │ └── placeholder.txt │ ├── otherapplies │ │ ├── enmap.sqlite │ │ └── placeholder.txt │ ├── placeholder.txt │ ├── premium │ │ └── placeholder.txt │ ├── queuesaves │ │ ├── enmap.sqlite │ │ └── placeholder.txt │ ├── ranking │ │ └── placeholder.txt │ ├── reactionrole │ │ └── placeholder.txt │ ├── roster │ │ └── placeholder.txt │ ├── settings │ │ └── placeholder.txt │ ├── setups │ │ └── placeholder.txt │ ├── social_log │ │ └── placeholder.txt │ ├── stats │ │ └── placeholder.txt │ └── warns │ │ └── placeholder.txt │ ├── events │ ├── client │ │ ├── debug.js │ │ ├── disconnect.js │ │ ├── error.js │ │ ├── rateLimit.js │ │ ├── ready.js │ │ ├── reconnecting.js │ │ ├── shardDisconnect.js │ │ ├── shardError.js │ │ ├── shardReady.js │ │ ├── shardReconnecting.js │ │ ├── shardResume.js │ │ └── warn.js │ └── guild │ │ ├── interactionCreate.js │ │ ├── message.js │ │ ├── messageCreate.js │ │ └── threadCreate.js │ ├── example.env │ ├── handlers │ ├── NumberCounter.js │ ├── aichat.js │ ├── anti_nuke.js │ ├── anticaps.js │ ├── antidiscord.js │ ├── antilinks.js │ ├── antimention.js │ ├── antiselfbot.js │ ├── antispam.js │ ├── apply.js │ ├── autobackup.js │ ├── autoembed.js │ ├── automeme.js │ ├── autonsfw.js │ ├── blacklist.js │ ├── boostlog.js │ ├── clientvariables.js │ ├── command.js │ ├── counter.js │ ├── dailyfact.js │ ├── epicgamesverification.js │ ├── erela_events │ │ ├── client_events.js │ │ ├── creation.js │ │ ├── events.js │ │ ├── musicsystem.js │ │ └── node_events.js │ ├── erelahandler.js │ ├── events.js │ ├── extraevents.js │ ├── functions.js │ ├── ghost_ping_detector.js │ ├── jointocreate.js │ ├── joinvc.js │ ├── keyword.js │ ├── leave.js │ ├── loaddb.js │ ├── logger.js │ ├── membercount.js │ ├── mute.js │ ├── playermanager.js │ ├── playermanagers │ │ ├── playlist.js │ │ ├── playtop.js │ │ ├── request.js │ │ ├── search.js │ │ ├── similar.js │ │ ├── skiptrack.js │ │ └── song.js │ ├── position.js │ ├── ranking.js │ ├── reactionrole.js │ ├── roster.js │ ├── slashCommands.js │ ├── suggest.js │ ├── ticket.js │ ├── ticketevent.js │ ├── timedmessages.js │ ├── validcode.js │ └── welcome.js │ ├── index.js │ ├── languages │ ├── de.json │ ├── en.json │ ├── in.json │ └── temp.json │ ├── package.json │ ├── slashCommands │ ├── Admin │ │ ├── embed.js │ │ └── say.js │ ├── Fun │ │ ├── meme.js │ │ ├── note.js │ │ ├── notstonks.js │ │ ├── ohno.js │ │ ├── rainbow.js │ │ ├── rip.js │ │ ├── roblox.js │ │ ├── sepia.js │ │ ├── shit.js │ │ ├── stonks.js │ │ ├── stroke.js │ │ ├── trash.js │ │ ├── wanted.js │ │ ├── wasted.js │ │ ├── weather.js │ │ └── whodidthis.js │ ├── Info │ │ ├── avatar.js │ │ ├── botfaq.js │ │ ├── botinfo.js │ │ ├── color.js │ │ ├── commandcount.js │ │ ├── customavatar.js │ │ ├── developer.js │ │ ├── emojiinfo.js │ │ ├── help.js │ │ ├── invites.js │ │ ├── modstats.js │ │ ├── permissions.js │ │ ├── ping.js │ │ ├── roleinfo.js │ │ ├── serveravatar.js │ │ ├── serverinfo.js │ │ ├── stats.js │ │ ├── translate.js │ │ ├── uptime.js │ │ └── userinfo.js │ ├── Music │ │ ├── autoplay.js │ │ ├── clearqueue.js │ │ ├── forward.js │ │ ├── join.js │ │ ├── loop.js │ │ ├── nowplaying.js │ │ ├── pause.js │ │ ├── play.js │ │ ├── playmusicmix.js │ │ ├── playsc.js │ │ ├── playskip.js │ │ ├── playskipsc.js │ │ ├── playtop.js │ │ ├── queue.js │ │ ├── replay.js │ │ ├── resume.js │ │ ├── rewind.js │ │ ├── search.js │ │ ├── seek.js │ │ ├── shuffle.js │ │ ├── skip.js │ │ ├── stop.js │ │ ├── unshuffle.js │ │ └── volume.js │ ├── NSFW │ │ ├── 4k.js │ │ ├── anal.js │ │ ├── ass.js │ │ ├── blowjob.js │ │ ├── boobs.js │ │ ├── eroyuri.js │ │ ├── futanari.js │ │ ├── gelbooru.js │ │ ├── girlsologif.js │ │ ├── hass.js │ │ ├── hboobs.js │ │ ├── hentai.js │ │ ├── hentaigif.js │ │ ├── keta.js │ │ ├── kuni.js │ │ ├── lesbian.js │ │ ├── lewdnekogif.js │ │ ├── nekoapiclassic.js │ │ ├── pgif.js │ │ ├── porn.js │ │ ├── pussy.js │ │ ├── pussywank.js │ │ ├── r34.js │ │ ├── waifu.js │ │ └── yuri.js │ └── chat.js │ └── social_log │ ├── livelog.js │ ├── streamconfig.json │ ├── tiktok.js │ ├── twitter.json │ ├── twitterfeed.js │ ├── twitterfeed2.js │ ├── youtube.js │ └── youtubelog │ └── placeholder.txt ├── settings.json ├── update.js └── updateWithoutSync.js /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: NotSaksh 4 | patreon: NotSaksh 5 | open_collective: NotSaksh 6 | ko_fi: # Replace with a single Ko-fi username 7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 9 | liberapay: # Replace with a single Liberapay username 10 | issuehunt: # Replace with a single IssueHunt username 11 | otechie: # Replace with a single Otechie username 12 | lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry 13 | custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Describe the bug** 11 | A clear and concise description of what the bug is. 12 | 13 | **To Reproduce** 14 | Steps to reproduce the behavior: 15 | 1. Go to '...' 16 | 2. Click on '....' 17 | 3. Scroll down to '....' 18 | 4. See error 19 | 20 | **Expected behavior** 21 | A clear and concise description of what you expected to happen. 22 | 23 | **Screenshots** 24 | If applicable, add screenshots to help explain your problem. 25 | 26 | **Desktop (please complete the following information):** 27 | - OS: [e.g. iOS] 28 | - Browser [e.g. chrome, safari] 29 | - Version [e.g. 22] 30 | 31 | **Smartphone (please complete the following information):** 32 | - Device: [e.g. iPhone6] 33 | - OS: [e.g. iOS8.1] 34 | - Browser [e.g. stock browser, safari] 35 | - Version [e.g. 22] 36 | 37 | **Additional context** 38 | Add any other context about the problem here. -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Is your feature request related to a problem? Please describe.** 11 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 12 | 13 | **Describe the solution you'd like** 14 | A clear and concise description of what you want to happen. 15 | 16 | **Describe alternatives you've considered** 17 | A clear and concise description of any alternative solutions or features you've considered. 18 | 19 | **Additional context** 20 | Add any other context or screenshots about the feature request here. -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | servicebots/ 3 | 4 | *.sqlite 5 | *.sqlite-shm 6 | *.sqlite-wal -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- 1 | { 2 | "token": "", 3 | "prefix": ",", 4 | "color": "#6861fe", 5 | "pastebinapi": "sdsd", 6 | "secret": "-6sqBYimrvctm8AN57aHamm6NquudZsO", 7 | "callback": "https://dash.nexusx.dev/callback", 8 | 9 | "paypal": { 10 | "clientId": "", 11 | "clientSecret": "" 12 | }, 13 | "servers": {}, 14 | "passwords": {}, 15 | "usernames": {} 16 | } 17 | -------------------------------------------------------------------------------- /dbs/bots/placeholder.txt: -------------------------------------------------------------------------------- 1 | placeholder -------------------------------------------------------------------------------- /dbs/freebots/placeholder.txt: -------------------------------------------------------------------------------- 1 | placeholder -------------------------------------------------------------------------------- /dbs/others/placeholder.txt: -------------------------------------------------------------------------------- 1 | placeholder -------------------------------------------------------------------------------- /dbs/payments/placeholder.txt: -------------------------------------------------------------------------------- 1 | in this folder a database will be created, the bot got coded by NotSaksh#6969 (github.com/NotSaksh6966) https://NotSaksh6966.xyz https://nexusx.dev https://discord.gg/notsaksh -------------------------------------------------------------------------------- /dbs/settings/placeholder.txt: -------------------------------------------------------------------------------- 1 | in this folder a database will be created, the bot got coded by NotSaksh#6969 (github.com/NotSaksh6966) https://NotSaksh6966.xyz https://nexusx.dev https://discord.gg/notsaksh Join now. 2 | -------------------------------------------------------------------------------- /ecosystem.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | apps : [{ 3 | name: `SYSTEMBOTS_${require('path').resolve(__dirname).split("/")[5]}`, 4 | script: 'index.js', 5 | cron_restart: "0 1 * * *" 6 | }] 7 | }; 8 | -------------------------------------------------------------------------------- /embed.json: -------------------------------------------------------------------------------- 1 | { 2 | "color": "#5865f2", 3 | "wrongcolor": "#e01e01", 4 | "footertext": "bot file", 5 | "footericon": "https://cdn.discordapp.com/embed/avatars/4.png" 6 | } -------------------------------------------------------------------------------- /index_paypal_payment.js: -------------------------------------------------------------------------------- 1 | //IMPORTING NPM PACKAGES 2 | const Discord = require('discord.js'); 3 | const colors = require("colors"); 4 | const fs = require("fs"); 5 | //Create the bot client 6 | const client = new Discord.Client({ 7 | allowedMentions: { 8 | parse: [ "roles", "users" ], 9 | repliedUser: false, 10 | }, 11 | intents: [ 12 | Discord.Intents.FLAGS.GUILDS, 13 | Discord.Intents.FLAGS.GUILD_MEMBERS, 14 | ], 15 | }); 16 | client.on("warn", e => console.log(e.stack ? String(e.stack).grey : String(e).grey)) 17 | client.on("debug", e => console.log(e.stack ? String(e.stack).grey : String(e).grey)) 18 | client.on("rateLimit", e => console.log(JSON.stringify(e).grey)) 19 | //DEFINE THE CONFIGURATION FILE 20 | client.config = require("./config.json"); 21 | //Load the paypal System 22 | require("./modules/paypal/index")(client); 23 | /** 24 | * @INFO LOGGING INTO THE BOT CLIENT 25 | */ 26 | client.login(client.config.token); 27 | -------------------------------------------------------------------------------- /modules/commands/Setup/ensure.js: -------------------------------------------------------------------------------- 1 | const { MessageEmbed, Permissions } = require("discord.js"); 2 | const { Roles } = require("../../../settings.json"); 3 | const emoji = require("../../../emoji") 4 | const { 5 | theDB, 6 | } = require("./utilfunctions"); 7 | 8 | module.exports = { 9 | name: require("path").parse(__filename).name, 10 | category: "Setup", 11 | aliases: ["savedb"], 12 | description: "", 13 | run: async (client, message, args, prefix) => { 14 | if (message.member.permissions.has("ADMINISTRATOR")) { 15 | theDB(client, message.guild); 16 | await message.react("") 17 | await message.reply(`✅ ***Succesfully Saved ALL The DataBase***`).catch(() => { }); 18 | } else { 19 | message.reply({ 20 | embeds: [new MessageEmbed() 21 | .setColor("RED") 22 | .setTitle(`❌ ERROR | An Error Occurred`) 23 | .setDescription(`\`\`\`You Don't Have Permission To Run This Command\`\`\``) 24 | .setFooter(message.guild.name, message.guild.iconURL()) 25 | .setTimestamp() 26 | ] 27 | }); 28 | await message.react("<:no:933239221836206131>") 29 | } 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /modules/commands/Setup/togglecustom.js: -------------------------------------------------------------------------------- 1 | const { Discord, MessageEmbed } = require("discord.js"); 2 | const { swap_pages2 } = require("../../utilfunctions") 3 | const { Roles } = require("../../../settings.json"); 4 | const emoji = require("../../../emoji") 5 | module.exports = { 6 | name: require("path").parse(__filename).name, 7 | category: "Setup", 8 | aliases: [ ], 9 | description: "", 10 | run: async (client, message, args, prefix) => { 11 | if (message.member.roles.highest.rawPosition < message.guild.roles.cache.get(Roles.OwnerRoleId).rawPosition) 12 | return message.reply({embeds: [new MessageEmbed() 13 | .setColor("RED") 14 | .setTitle(`❌ ERROR | An Error Occurred`) 15 | .setDescription(`\`\`\`You are not allowed to execute this Command!\`\`\``) 16 | .setFooter(message.guild.name, message.guild.iconURL()) 17 | .setTimestamp() 18 | ]});//no emoji 19 | client.setups.set(message.guild.id, !client.setups.get(message.guild.id, "ticketsystem8.enabled"), "ticketsystem8.enabled") 20 | return message.reply(`> ✅ **The CUSTOM CODE ORDERING SYSTEM Is Now: \`${client.setups.get(message.guild.id, "ticketsystem8.enabled") ? "Enabled" : "Disabled"}\`**`) 21 | } 22 | } -------------------------------------------------------------------------------- /modules/commands/Setup/togglegeneral.js: -------------------------------------------------------------------------------- 1 | const { Discord, MessageEmbed } = require("discord.js"); 2 | const { swap_pages2 } = require("../../utilfunctions") 3 | const { Roles } = require("../../../settings.json"); 4 | const emoji = require("../../../emoji") 5 | module.exports = { 6 | name: require("path").parse(__filename).name, 7 | category: "Setup", 8 | aliases: [ ], 9 | description: "", 10 | run: async (client, message, args, prefix) => { 11 | if (message.member.roles.highest.rawPosition < message.guild.roles.cache.get(Roles.OwnerRoleId).rawPosition) 12 | return message.reply({embeds: [new MessageEmbed() 13 | .setColor("RED") 14 | .setTitle(`❌ ERROR | An Error Occurred`) 15 | .setDescription(`\`\`\`You are not allowed to execute this Command!\`\`\``) 16 | .setFooter(message.guild.name, message.guild.iconURL()) 17 | .setTimestamp() 18 | ]}); 19 | client.setups.set(message.guild.id, !client.setups.get(message.guild.id, "ticketsystem4.enabled"), "ticketsystem4.enabled") 20 | return message.reply(`> ✅ **The General Ticket Support is now: \`${client.setups.get(message.guild.id, "ticketsystem4.enabled") ? "Enabled" : "Disabled"}\`**`) 21 | } 22 | } -------------------------------------------------------------------------------- /modules/commands/Setup/togglemodmail.js: -------------------------------------------------------------------------------- 1 | const { Discord, MessageEmbed } = require("discord.js"); 2 | const { swap_pages2 } = require("../../utilfunctions") 3 | const { Roles } = require("../../../settings.json"); 4 | const emoji = require("../../../emoji") 5 | module.exports = { 6 | name: require("path").parse(__filename).name, 7 | category: "Setup", 8 | aliases: [ ], 9 | description: "", 10 | run: async (client, message, args, prefix) => { 11 | if (message.member.roles.highest.rawPosition < message.guild.roles.cache.get(Roles.OwnerRoleId).rawPosition) 12 | return message.reply({embeds: [new MessageEmbed() 13 | .setColor("RED") 14 | .setTitle(`❌ ERROR | An Error Occurred`) 15 | .setDescription(`\`\`\`You are not allowed to execute this Command!\`\`\``) 16 | .setFooter(message.guild.name, message.guild.iconURL()) 17 | .setTimestamp() 18 | ]}); 19 | client.setups.set(message.guild.id, !client.setups.get(message.guild.id, "ticketsystem9.enabled"), "ticketsystem9.enabled") 20 | return message.reply(`> ✅ **The MODMAIL BOT ORDER SYSTEM is now: \`${client.setups.get(message.guild.id, "ticketsystem9.enabled") ? "Enabled" : "Disabled"}\`**`) 21 | } 22 | } -------------------------------------------------------------------------------- /modules/commands/Setup/togglemusicbot.js: -------------------------------------------------------------------------------- 1 | const { Discord, MessageEmbed } = require("discord.js"); 2 | const { swap_pages2 } = require("../../utilfunctions") 3 | const { Roles } = require("../../../settings.json"); 4 | const emoji = require("../../../emoji") 5 | module.exports = { 6 | name: require("path").parse(__filename).name, 7 | category: "Setup", 8 | aliases: [ ], 9 | description: "", 10 | run: async (client, message, args, prefix) => { 11 | if (message.member.roles.highest.rawPosition < message.guild.roles.cache.get(Roles.OwnerRoleId).rawPosition) 12 | return message.reply({embeds: [new MessageEmbed() 13 | .setColor("RED") 14 | .setTitle(`❌ ERROR | An Error Occurred`) 15 | .setDescription(`\`\`\`You are not allowed to execute this Command!\`\`\``) 16 | .setFooter(message.guild.name, message.guild.iconURL()) 17 | .setTimestamp() 18 | ]}); 19 | client.setups.set(message.guild.id, !client.setups.get(message.guild.id, "ticketsystem2.enabled"), "ticketsystem2.enabled") 20 | return message.reply(`> ✅ **The MUSIC BOT ORDER SYSTEM Is Now: \`${client.setups.get(message.guild.id, "ticketsystem2.enabled") ? "Enabled" : "Disabled"}\`**`) 21 | } 22 | } -------------------------------------------------------------------------------- /modules/commands/Setup/togglesystembot.js: -------------------------------------------------------------------------------- 1 | const { Discord, MessageEmbed } = require("discord.js"); 2 | const { swap_pages2 } = require("../../utilfunctions") 3 | const { Roles } = require("../../../settings.json"); 4 | const emoji = require("../../../emoji") 5 | module.exports = { 6 | name: require("path").parse(__filename).name, 7 | category: "Setup", 8 | aliases: [ ], 9 | description: "", 10 | run: async (client, message, args, prefix) => { 11 | if (message.member.roles.highest.rawPosition < message.guild.roles.cache.get(Roles.OwnerRoleId).rawPosition) 12 | return message.reply({embeds: [new MessageEmbed() 13 | .setColor("RED") 14 | .setTitle(`❌ ERROR | An Error Occurred`) 15 | .setDescription(`\`\`\`You are not allowed to execute this Command!\`\`\``) 16 | .setFooter(message.guild.name, message.guild.iconURL()) 17 | .setTimestamp() 18 | ]}); 19 | client.setups.set(message.guild.id, !client.setups.get(message.guild.id, "ticketsystem3.enabled"), "ticketsystem3.enabled") 20 | return message.reply(`> ✅ **The SYSTEM BOT ORDER SYSTEM is now: \`${client.setups.get(message.guild.id, "ticketsystem3.enabled") ? "Enabled" : "Disabled"}\`**`) 21 | } 22 | } -------------------------------------------------------------------------------- /modules/commands/Setup/toggleteamapply.js: -------------------------------------------------------------------------------- 1 | const { Discord, MessageEmbed } = require("discord.js"); 2 | const { swap_pages2 } = require("../../utilfunctions") 3 | const { Roles } = require("../../../settings.json"); 4 | const emoji = require("../../../emoji") 5 | module.exports = { 6 | name: require("path").parse(__filename).name, 7 | category: "Setup", 8 | aliases: [ ], 9 | description: "", 10 | run: async (client, message, args, prefix) => { 11 | if (message.member.roles.highest.rawPosition < message.guild.roles.cache.get(Roles.ChiefHumanResources).rawPosition) 12 | return message.reply({embeds: [new MessageEmbed() 13 | .setColor("RED") 14 | .setTitle(`❌ ERROR | An Error Occurred`) 15 | .setDescription(`\`\`\`You are not allowed to execute this Command!\`\`\``) 16 | .setFooter(message.guild.name, message.guild.iconURL()) 17 | .setTimestamp() 18 | ]}); 19 | client.setups.set(message.guild.id, !client.setups.get(message.guild.id, "ticketsystem_teamapply.enabled"), "ticketsystem_teamapply.enabled") 20 | return message.reply(`> ✅ **The Team Application System is now: \`${client.setups.get(message.guild.id, "ticketsystem_teamapply.enabled") ? "Enabled" : "Disabled"}\`**`) 21 | } 22 | } -------------------------------------------------------------------------------- /modules/commands/Setup/togglewaitingroom.js: -------------------------------------------------------------------------------- 1 | const { Discord, MessageEmbed } = require("discord.js"); 2 | const { swap_pages2 } = require("../../utilfunctions") 3 | const { Roles } = require("../../../settings.json"); 4 | const emoji = require("../../../emoji") 5 | module.exports = { 6 | name: require("path").parse(__filename).name, 7 | category: "Setup", 8 | aliases: [ ], 9 | description: "", 10 | run: async (client, message, args, prefix) => { 11 | if (message.member.roles.highest.rawPosition < message.guild.roles.cache.get(Roles.OwnerRoleId).rawPosition) 12 | return message.reply({embeds: [new MessageEmbed() 13 | .setColor("RED") 14 | .setTitle(`❌ ERROR | An Error Occurred`) 15 | .setDescription(`\`\`\`You are not allowed to execute this Command!\`\`\``) 16 | .setFooter(message.guild.name, message.guild.iconURL()) 17 | .setTimestamp() 18 | ]}); 19 | client.setups.set(message.guild.id, !client.setups.get(message.guild.id, "ticketsystem.enabled"), "ticketsystem.enabled") 20 | return message.reply(`> ✅ **The WAITINGROOM BOT ORDER SYSTEM is now: \`${client.setups.get(message.guild.id, "ticketsystem.enabled") ? "Enabled" : "Disabled"}\`**`) 21 | } 22 | } -------------------------------------------------------------------------------- /modules/dashboard/lib/swr.js: -------------------------------------------------------------------------------- 1 | import fetch from 'isomorphic-unfetch'; 2 | import useSWR from 'swr'; 3 | 4 | export default function SWR(url, interval = 1000) { 5 | return useSWR(url, (href) => fetch(href, { 6 | method: 'GET', 7 | headers: { 8 | 'Content-Type': 'application/json' 9 | } 10 | }).then(res => res.json()) 11 | , { refreshInterval: interval } 12 | ); 13 | }; -------------------------------------------------------------------------------- /modules/events/threadCreate.js: -------------------------------------------------------------------------------- 1 | //IMPORTING NPM PACKAGES 2 | const Discord = require('discord.js'); 3 | /** 4 | * STARTING THE MODULE WHILE EXPORTING THE CLIENT INTO IT 5 | * @param {*} client 6 | */ 7 | module.exports = async (client) => { 8 | 9 | /** 10 | * @INFO - Thread Create Logger 11 | */ 12 | client.on("threadCreate", async (thread) => { 13 | if(thread.joinable){ 14 | try{ 15 | await thread.join(); 16 | }catch (e){ 17 | console.log(e) 18 | } 19 | } 20 | }) 21 | 22 | } 23 | 24 | -------------------------------------------------------------------------------- /modules/paypal/.well-known/acme-challenge/di9iAtNnDJHqRie-gHMM2Jq7ZMi84Pl_jnHzltmSarA: -------------------------------------------------------------------------------- 1 | di9iAtNnDJHqRie-gHMM2Jq7ZMi84Pl_jnHzltmSarA.w9YQ_Fewb6mRfPbzshpxUyQ8wB0Z7QduejSHuD6thPc -------------------------------------------------------------------------------- /modules/paypal/assets/img/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/modules/paypal/assets/img/about.png -------------------------------------------------------------------------------- /modules/paypal/assets/img/bots/24_7_Radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/modules/paypal/assets/img/bots/24_7_Radio.png -------------------------------------------------------------------------------- /modules/paypal/assets/img/bots/ClanBot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/modules/paypal/assets/img/bots/ClanBot2.png -------------------------------------------------------------------------------- /modules/paypal/assets/img/bots/LavaMusic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/modules/paypal/assets/img/bots/LavaMusic.png -------------------------------------------------------------------------------- /modules/paypal/assets/img/bots/Milrato.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/modules/paypal/assets/img/bots/Milrato.png -------------------------------------------------------------------------------- /modules/paypal/assets/img/bots/MilratoShop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/modules/paypal/assets/img/bots/MilratoShop.png -------------------------------------------------------------------------------- /modules/paypal/assets/img/bots/channelmaster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/modules/paypal/assets/img/bots/channelmaster.png -------------------------------------------------------------------------------- /modules/paypal/assets/img/bots/chatbot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/modules/paypal/assets/img/bots/chatbot.png -------------------------------------------------------------------------------- /modules/paypal/assets/img/bots/discordbotmaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/modules/paypal/assets/img/bots/discordbotmaker.png -------------------------------------------------------------------------------- /modules/paypal/assets/img/bots/easiestapplication.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/modules/paypal/assets/img/bots/easiestapplication.png -------------------------------------------------------------------------------- /modules/paypal/assets/img/bots/easiestapplication2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/modules/paypal/assets/img/bots/easiestapplication2.png -------------------------------------------------------------------------------- /modules/paypal/assets/img/bots/globalbot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/modules/paypal/assets/img/bots/globalbot.png -------------------------------------------------------------------------------- /modules/paypal/assets/img/bots/music_mixer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/modules/paypal/assets/img/bots/music_mixer.png -------------------------------------------------------------------------------- /modules/paypal/assets/img/bots/musicium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/modules/paypal/assets/img/bots/musicium.png -------------------------------------------------------------------------------- /modules/paypal/assets/img/bots/public_waitingroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/modules/paypal/assets/img/bots/public_waitingroom.png -------------------------------------------------------------------------------- /modules/paypal/assets/img/bots/social_poster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/modules/paypal/assets/img/bots/social_poster.png -------------------------------------------------------------------------------- /modules/paypal/assets/img/bots/suggestions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/modules/paypal/assets/img/bots/suggestions.png -------------------------------------------------------------------------------- /modules/paypal/assets/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/modules/paypal/assets/img/favicon.png -------------------------------------------------------------------------------- /modules/paypal/assets/img/hero-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/modules/paypal/assets/img/hero-bg.jpg -------------------------------------------------------------------------------- /modules/paypal/assets/img/hero-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/modules/paypal/assets/img/hero-img.png -------------------------------------------------------------------------------- /modules/paypal/assets/img/team/team-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/modules/paypal/assets/img/team/team-1.jpg -------------------------------------------------------------------------------- /modules/paypal/assets/img/team/team-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/modules/paypal/assets/img/team/team-2.jpg -------------------------------------------------------------------------------- /modules/paypal/assets/img/team/team-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/modules/paypal/assets/img/team/team-3.jpg -------------------------------------------------------------------------------- /modules/paypal/assets/img/team/team-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/modules/paypal/assets/img/team/team-4.jpg -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/LICENSE.md: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2019-2020 The Bootstrap Authors 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/font/fonts/bootstrap-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/modules/paypal/assets/vendor/bootstrap-icons/font/fonts/bootstrap-icons.woff -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/font/fonts/bootstrap-icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/modules/paypal/assets/vendor/bootstrap-icons/font/fonts/bootstrap-icons.woff2 -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/fonts/bootstrap-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/modules/paypal/assets/vendor/bootstrap-icons/fonts/bootstrap-icons.woff -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/fonts/bootstrap-icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/modules/paypal/assets/vendor/bootstrap-icons/fonts/bootstrap-icons.woff2 -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/activity.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/alarm-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/alarm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/align-bottom.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/align-center.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/align-end.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/align-middle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/align-start.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/align-top.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/alt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/app-indicator.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/app.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/archive-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/archive.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/arrow-90deg-down.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/arrow-90deg-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/arrow-90deg-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/arrow-90deg-up.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/arrow-bar-down.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/arrow-bar-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/arrow-bar-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/arrow-bar-up.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/arrow-clockwise.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/arrow-counterclockwise.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/arrow-down-circle-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/arrow-down-circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/arrow-down-left-circle-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/arrow-down-left-circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/arrow-down-left-square-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/arrow-down-left-square.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/arrow-down-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/arrow-down-right-circle-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/arrow-down-right-circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/arrow-down-right-square-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/arrow-down-right-square.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/arrow-down-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/arrow-down-short.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/arrow-down-square-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/arrow-down-square.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/arrow-down-up.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/arrow-down.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/arrow-left-circle-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/arrow-left-circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/arrow-left-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/arrow-left-short.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/arrow-left-square-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/arrow-left-square.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/arrow-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/arrow-repeat.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/arrow-return-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/arrow-return-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/arrow-right-circle-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/arrow-right-circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/arrow-right-short.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/arrow-right-square-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/arrow-right-square.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/arrow-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/arrow-up-circle-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/arrow-up-circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/arrow-up-left-circle-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/arrow-up-left-circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/arrow-up-left-square-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/arrow-up-left-square.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/arrow-up-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/arrow-up-right-circle-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/arrow-up-right-circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/arrow-up-right-square-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/arrow-up-right-square.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/arrow-up-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/arrow-up-short.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/arrow-up-square-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/arrow-up-square.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/arrow-up.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/arrows-angle-contract.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/arrows-angle-expand.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/arrows-collapse.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/arrows-expand.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/arrows-fullscreen.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/arrows-move.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/aspect-ratio-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/aspect-ratio.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/asterisk.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/at.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/award-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/award.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/back.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/backspace-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/backspace-reverse-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/backspace-reverse.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/backspace.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/badge-3d-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/badge-3d.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/badge-4k-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/badge-4k.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/badge-8k-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/badge-8k.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/badge-ad-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/badge-ad.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/bootstrap-icons/icons/badge-ar-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/boxicons/css/transformations.css: -------------------------------------------------------------------------------- 1 | .bx-rotate-90 2 | { 3 | transform: rotate(90deg); 4 | 5 | -ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=1)'; 6 | } 7 | .bx-rotate-180 8 | { 9 | transform: rotate(180deg); 10 | 11 | -ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=2)'; 12 | } 13 | .bx-rotate-270 14 | { 15 | transform: rotate(270deg); 16 | 17 | -ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=3)'; 18 | } 19 | .bx-flip-horizontal 20 | { 21 | transform: scaleX(-1); 22 | 23 | -ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)'; 24 | } 25 | .bx-flip-vertical 26 | { 27 | transform: scaleY(-1); 28 | 29 | -ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)'; 30 | } 31 | -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/boxicons/fonts/boxicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/modules/paypal/assets/vendor/boxicons/fonts/boxicons.eot -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/boxicons/fonts/boxicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/modules/paypal/assets/vendor/boxicons/fonts/boxicons.ttf -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/boxicons/fonts/boxicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/modules/paypal/assets/vendor/boxicons/fonts/boxicons.woff -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/boxicons/fonts/boxicons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/modules/paypal/assets/vendor/boxicons/fonts/boxicons.woff2 -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/remixicon/remixicon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/modules/paypal/assets/vendor/remixicon/remixicon.eot -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/remixicon/remixicon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/modules/paypal/assets/vendor/remixicon/remixicon.ttf -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/remixicon/remixicon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/modules/paypal/assets/vendor/remixicon/remixicon.woff -------------------------------------------------------------------------------- /modules/paypal/assets/vendor/remixicon/remixicon.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/modules/paypal/assets/vendor/remixicon/remixicon.woff2 -------------------------------------------------------------------------------- /modules/paypal/success/admin.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | Music Bot Payment Approval 9 | 19 | 20 | 21 |

Thanks for Buying the:

22 |

ADMIN BOT SOURCE CODE

23 |

Make sure to tell use in the Ticket that you bought the Source Code!
NotSaksh#6969 Will soon contact you and explain you everything!
Please be patient and ask a Staff Member to verify your payment!

24 | 25 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "shop-managerx", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "repository": { 10 | "type": "git", 11 | "url": "git+https://github.com/NotSaksh/Shop-Managerx.git" 12 | }, 13 | "author": "", 14 | "license": "ISC", 15 | "bugs": { 16 | "url": "https://github.com/NotSaksh/Shop-Managerx/issues" 17 | }, 18 | "homepage": "https://github.com/NotSaksh/Shop-Managerx#readme", 19 | "dependencies": { 20 | "body-parser": "^1.20.0", 21 | "colors": "^1.4.0", 22 | "cron": "^2.0.0", 23 | "discord.js": "^13.8.0", 24 | "ejs": "^3.1.8", 25 | "enmap": "^5.9.0", 26 | "express": "^4.18.1", 27 | "express-session": "^1.17.3", 28 | "fs-extra": "^10.1.0", 29 | "memorystore": "^1.6.7", 30 | "moment": "^2.29.3", 31 | "ms": "^2.1.3", 32 | "node-scp": "^0.0.17", 33 | "passport": "^0.6.0", 34 | "passport-discord": "^0.1.4", 35 | "paypal-rest-sdk": "^1.8.1", 36 | "scp-promises": "^0.5.0", 37 | "sourcebin": "^4.3.5", 38 | "ssh2": "^1.10.0", 39 | "translatte": "^3.0.1" 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /pm2.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | apps: [ 3 | { 4 | name: "Bot Managerx", 5 | script: "./index.js", 6 | watch: true, 7 | exec_mode: "cluster", 8 | ignore_watch: ["[/\\]./", "^.sqlite", "[/\\].html", "dbs", "node_modules", "*.html", "servicebots", "^.html", "databases", "cache", "^.", "^[.]", ".git"], 9 | watch_options: { 10 | followSymlinks: false, 11 | }, 12 | args: ["--color"], 13 | }, 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /servicebots/MusicBots/template/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: ['donate.milrato.dev', 'discord.gg/dcdev', 'bero.milrato.dev', 'bittmax.milrato.dev' ] 2 | -------------------------------------------------------------------------------- /servicebots/MusicBots/template/application.yml: -------------------------------------------------------------------------------- 1 | server: # REST and WS server 2 | port: 2333 3 | address: 0.0.0.0 4 | lavalink: 5 | server: 6 | password: "youshallnotpass" 7 | sources: 8 | youtube: true 9 | bandcamp: true 10 | soundcloud: true 11 | twitch: true 12 | vimeo: true 13 | mixer: true 14 | http: true 15 | local: false 16 | bufferDurationMs: 150 17 | youtubePlaylistLoadLimit: 5 # 5 Means ... 500 Songs maximum / Playlist 18 | youtubeSearchEnabled: true 19 | soundcloudSearchEnabled: true 20 | gc-warnings: true 21 | #ratelimit: 22 | #ipBlocks: ["Ipv6/48", "OTHER_Ipv6/48"] # list of ip blocks 23 | #strategy: "RotateOnBan" # RotateOnBan | LoadBalance | NanoSwitch | RotatingNanoSwitch 24 | 25 | 26 | metrics: 27 | prometheus: 28 | enabled: false 29 | endpoint: /metrics 30 | sentry: 31 | dsn: "" 32 | logging: 33 | file: 34 | max-history: 5 35 | max-size: 100MB 36 | path: ./logs/ 37 | level: 38 | root: INFO 39 | lavalink: INFO 40 | -------------------------------------------------------------------------------- /servicebots/MusicBots/template/botconfig/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "token": "OTY1OTcxMjI3Nzk1NjczMTI4.Yl68zw.XJiI7QJU3q6dUxtl5AilvUFGg6Q", 3 | "prefix": "!", 4 | "ownerIDS": [ 5 | "921430546813419550", 6 | "360693991110344717" 7 | ], 8 | "status": { 9 | "text": "!help | notsaksh pooooog", 10 | "text2": "By: milrato.dev", 11 | "type": "WATCHING", 12 | "url": "https://twitch.tv/#" 13 | }, 14 | "clientsettings": { 15 | "nodes": [ 16 | { 17 | "host": "n1.lavalink.milrato.com", 18 | "port": 10250, 19 | "password": "discord.gg/milrato" 20 | } 21 | ] 22 | }, 23 | "spotify": { 24 | "clientSecret": "45e5a5c9eb14418a8c4aa39d1ca61edd", 25 | "clientID": "bcc3541dff49441388bfe5e7ab0609c1" 26 | } 27 | } -------------------------------------------------------------------------------- /servicebots/MusicBots/template/botconfig/embed.json: -------------------------------------------------------------------------------- 1 | { 2 | "color": "#cda37c", 3 | "wrongcolor": "#e01e01", 4 | "footertext": "test_test", 5 | "footericon": "https://cdn.discordapp.com/avatars/962690907017216020/bac23e44c3d8362d891c3980985b29e5.png" 6 | } -------------------------------------------------------------------------------- /servicebots/MusicBots/template/botconfig/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "debug-logs": true, 3 | "anti-crash-logs": true, 4 | "ratelimit-logs": true, 5 | 6 | "debug-discordjs-logs": false, 7 | "show-serverjoins": false, 8 | "show_loaded_commands": false, 9 | "show_loaded_events": false, 10 | 11 | "auto-resume-save-cooldown": 2500, 12 | "auto-resume-delay": 500, 13 | 14 | "deleteMessagesBeforeTheLastSongPlayedMessages": true, 15 | 16 | 17 | "COMMENT": "time_delay 0 === insta leave", 18 | "leaveOnEmpty_Channel": { 19 | "enabled": true, 20 | "time_delay": 60000 21 | }, 22 | "LeaveOnEmpty_Queue": { 23 | "enabled": true, 24 | "time_delay": 60000 25 | }, 26 | 27 | 28 | "default_db_data": { 29 | "language": "en", 30 | "pruning": true, 31 | "unkowncmdmessage": false, 32 | "autoresume": true, 33 | 34 | "defaultvolume": 20, 35 | "defaultequalizer": false, 36 | "defaultautoplay": false 37 | } 38 | } -------------------------------------------------------------------------------- /servicebots/MusicBots/template/commands/🎶 Music/addprevious.js: -------------------------------------------------------------------------------- 1 | const playermanager = require(`${process.cwd()}/handlers/playermanager`); 2 | module.exports = { 3 | name: `addprevious`, 4 | category: `🎶 Music`, 5 | aliases: [`addp`, `addpre`, `addprevius`, `addprevios`], 6 | description: `Adds the previous song to the Queue again!`, 7 | usage: `addprevious`, 8 | parameters: { 9 | "type": "music", 10 | "activeplayer": true, 11 | "previoussong": true 12 | }, 13 | type: "queue", 14 | run: async (client, message, args, cmduser, text, prefix, player, es, ls) => { 15 | //adds/plays it 16 | playermanager(client, message, Array(player.queue.previous.uri), player.queue.previous.uri.includes(`soundcloud`) ? `song:soundcloud` : `song:raw`); 17 | } 18 | }; 19 | /** 20 | * @INFO 21 | * Bot Coded by Tomato#6966 | https://github.com/Tomato6966/discord-js-lavalink-Music-Bot-erela-js 22 | * @INFO 23 | * Work for Milrato Development | https://milrato.dev 24 | * @INFO 25 | * Please mention Him / Milrato Development, when using this Code! 26 | * @INFO 27 | */ 28 | -------------------------------------------------------------------------------- /servicebots/MusicBots/template/commands/🎶 Music/addsimilar.js: -------------------------------------------------------------------------------- 1 | const playermanager = require(`${process.cwd()}/handlers/playermanager`); 2 | module.exports = { 3 | name: `addsimilar`, 4 | category: `🎶 Music`, 5 | aliases: [`adds`, `addrelated`, `addr`], 6 | description: `Adds a similar song of the current Track to the Queue!`, 7 | usage: `addsimilar`, 8 | parameters: { 9 | "type": "music", 10 | "activeplayer": true, 11 | "previoussong": false 12 | }, 13 | type: "queue", 14 | run: async (client, message, args, cmduser, text, prefix, player, es, ls) => { 15 | //execute the code 16 | playermanager(client, message, Array(`https://www.youtube.com/watch?v=${player.queue.current.identifier}&list=RD${player.queue.current.identifier}`), `similar:add`); 17 | } 18 | }; 19 | /** 20 | * @INFO 21 | * Bot Coded by Tomato#6966 | https://discord.gg/milrato 22 | * @INFO 23 | * Work for Milrato Development | https://milrato.dev 24 | * @INFO 25 | * Please mention him / Milrato Development, when using this Code! 26 | * @INFO 27 | */ 28 | -------------------------------------------------------------------------------- /servicebots/MusicBots/template/commands/🎶 Music/clearqueue.js: -------------------------------------------------------------------------------- 1 | const { 2 | MessageEmbed 3 | } = require(`discord.js`); 4 | const emoji = require(`${process.cwd()}/botconfig/emojis.json`); 5 | module.exports = { 6 | name: `clearqueue`, 7 | category: `🎶 Music`, 8 | aliases: [`clearqu`], 9 | description: `Cleares the Queue`, 10 | usage: `clearqueue`, 11 | cooldown: 10, 12 | parameters: { 13 | "type": "music", 14 | "activeplayer": true, 15 | "check_dj": true, 16 | "previoussong": false 17 | }, 18 | type: "queue", 19 | run: async (client, message, args, cmduser, text, prefix, player, es, ls) => { 20 | //clear the QUEUE 21 | player.queue.clear(); 22 | //React with emojis 23 | message.react(emoji.react.queue_clear).catch(() => {}) 24 | //Send Success Message 25 | return message.reply({ 26 | embeds: [new MessageEmbed() 27 | .setTitle(client.la[ls].cmds.music.clearqueue.title) 28 | .setColor(es.color) 29 | ] 30 | }); 31 | } 32 | }; 33 | /** 34 | * @INFO 35 | * Bot Coded by Tomato#6966 | https://github.com/Tomato6966/discord-js-lavalink-Music-Bot-erela-js 36 | * @INFO 37 | * Work for Milrato Development | https://milrato.dev 38 | * @INFO 39 | * Please mention Him / Milrato Development, when using this Code! 40 | * @INFO 41 | */ 42 | -------------------------------------------------------------------------------- /servicebots/MusicBots/template/commands/🎶 Music/restart.js: -------------------------------------------------------------------------------- 1 | const emoji = require(`${process.cwd()}/botconfig/emojis.json`); 2 | module.exports = { 3 | name: `restart`, 4 | category: `🎶 Music`, 5 | aliases: [`replay`], 6 | description: `Restarts the current song`, 7 | usage: `restart`, 8 | parameters: { 9 | "type": "music", 10 | "activeplayer": true, 11 | "check_dj": true, 12 | "previoussong": false 13 | }, 14 | type: "song", 15 | run: async (client, message, args, cmduser, text, prefix, player, es, ls) => { 16 | //seek to 0 17 | player.seek(0); 18 | //send informational message 19 | message.react(emoji.react.replay_track).catch(() => {}) 20 | } 21 | }; 22 | /** 23 | * @INFO 24 | * Bot Coded by Tomato#6966 | https://github.com/Tomato6966/discord-js-lavalink-Music-Bot-erela-js 25 | * @INFO 26 | * Work for Milrato Development | https://milrato.dev 27 | * @INFO 28 | * Please mention Him / Milrato Development, when using this Code! 29 | * @INFO 30 | */ 31 | -------------------------------------------------------------------------------- /servicebots/MusicBots/template/commands/🎶 Music/searchsimilar.js: -------------------------------------------------------------------------------- 1 | const playermanager = require(`${process.cwd()}/handlers/playermanager`); 2 | module.exports = { 3 | name: `searchsimilar`, 4 | category: `🎶 Music`, 5 | aliases: [`searchs`, `searchrelated`, `searchr`], 6 | description: `Seraches a similar song of the current Track!`, 7 | usage: `searchsimilar`, 8 | parameters: { 9 | "type": "music", 10 | "activeplayer": true, 11 | "previoussong": false 12 | }, 13 | type: "queue", 14 | run: async (client, message, args, cmduser, text, prefix, player, es, ls) => { 15 | //adds/plays it 16 | playermanager(client, message, Array(`https://www.youtube.com/watch?v=${player.queue.current.identifier}&list=RD${player.queue.current.identifier}`), `similar:search`); 17 | } 18 | }; 19 | -------------------------------------------------------------------------------- /servicebots/MusicBots/template/commands/🎶 Music/shuffle.js: -------------------------------------------------------------------------------- 1 | const emoji = require(`${process.cwd()}/botconfig/emojis.json`); 2 | module.exports = { 3 | name: `shuffle`, 4 | category: `🎶 Music`, 5 | aliases: [`mix`], 6 | description: `Shuffles the Queue`, 7 | usage: `shuffle`, 8 | parameters: { 9 | "type": "music", 10 | "activeplayer": true, 11 | "check_dj": true, 12 | "previoussong": false 13 | }, 14 | type: "queue", 15 | run: async (client, message, args, cmduser, text, prefix, player, es, ls) => { 16 | //set into the player instance an old Queue, before the shuffle... 17 | player.set(`beforeshuffle`, player.queue.map(track => track)); 18 | //shuffle the Queue 19 | player.queue.shuffle(); 20 | //return success message 21 | return message.react(emoji.react.shuffle).catch((e) => {}) 22 | } 23 | }; 24 | /** 25 | * @INFO 26 | * Bot Coded by Tomato#6966 | https://github.com/Tomato6966/discord-js-lavalink-Music-Bot-erela-js 27 | * @INFO 28 | * Work for Milrato Development | https://milrato.dev 29 | * @INFO 30 | * Please mention Him / Milrato Development, when using this Code! 31 | * @INFO 32 | */ 33 | -------------------------------------------------------------------------------- /servicebots/MusicBots/template/commands/🎶 Music/stop.js: -------------------------------------------------------------------------------- 1 | const emoji = require(`${process.cwd()}/botconfig/emojis.json`); 2 | module.exports = { 3 | name: `stop`, 4 | category: `🎶 Music`, 5 | aliases: [`leave`, "dis", "disconnect", "votestop", "voteleave", "votedis", "votedisconnect", "vstop", "vleave", "vdis", "vdisconnect"], 6 | description: `Stops current track and leaves the channel`, 7 | usage: `stop`, 8 | parameters: { 9 | "type": "music", 10 | "activeplayer": false, 11 | "check_dj": false, 12 | "previoussong": false 13 | }, 14 | type: "song", 15 | run: async (client, message, args, cmduser, text, prefix, player, es, ls) => { 16 | //stop playing 17 | if(player && player.queue) player.destroy(); 18 | else if(message.guild.me.voice.channel) message.guild.me.voice.disconnect().catch(() => {}); 19 | //React with the emoji 20 | return message.react(emoji.react.stop).catch((e) => {}) 21 | } 22 | }; 23 | /** 24 | * @INFO 25 | * Bot Coded by Tomato#6966 | https://github.com/Tomato6966/discord-js-lavalink-Music-Bot-erela-js 26 | * @INFO 27 | * Work for Milrato Development | https://milrato.dev 28 | * @INFO 29 | * Please mention Him / Milrato Development, when using this Code! 30 | * @INFO 31 | */ 32 | -------------------------------------------------------------------------------- /servicebots/MusicBots/template/commands/🎶 Music/stoploop.js: -------------------------------------------------------------------------------- 1 | const { 2 | MessageEmbed 3 | } = require(`discord.js`); 4 | const emoji = require(`${process.cwd()}/botconfig/emojis.json`); 5 | module.exports = { 6 | name: `stoploop`, 7 | category: `🎶 Music`, 8 | aliases: [`offloop`, `disableloop`], 9 | description: `Stops and disables the Loop`, 10 | usage: `stoploop`, 11 | parameters: { 12 | "type": "music", 13 | "activeplayer": true, 14 | "check_dj": true, 15 | "previoussong": false 16 | }, 17 | type: "queuesong", 18 | run: async (client, message, args, cmduser, text, prefix, player, es, ls) => { 19 | //stop both loops 20 | player.setTrackRepeat(false); 21 | player.setQueueRepeat(false); 22 | //send info 23 | return message.reply({ 24 | embeds: [ 25 | new MessageEmbed() 26 | .setTitle(client.la[ls].cmds.music.loop.queue.disabled) 27 | .setColor(es.color) 28 | .setDescription(client.la[ls].cmds.music.loop.andsong) 29 | ] 30 | }) 31 | 32 | } 33 | }; 34 | /** 35 | * @INFO 36 | * Bot Coded by Tomato#6966 | https://github.com/Tomato6966/discord-js-lavalink-Music-Bot-erela-js 37 | * @INFO 38 | * Work for Milrato Development | https://milrato.dev 39 | * @INFO 40 | * Please mention Him / Milrato Development, when using this Code! 41 | * @INFO 42 | */ 43 | -------------------------------------------------------------------------------- /servicebots/MusicBots/template/databases/musicsettings/Placeholder.txt: -------------------------------------------------------------------------------- 1 | placeholder file -------------------------------------------------------------------------------- /servicebots/MusicBots/template/databases/premium/placeholder.txt: -------------------------------------------------------------------------------- 1 | placeholder file -------------------------------------------------------------------------------- /servicebots/MusicBots/template/databases/queuesaves/placeholder.txt: -------------------------------------------------------------------------------- 1 | placeholder file -------------------------------------------------------------------------------- /servicebots/MusicBots/template/databases/settings/placeholder.txt: -------------------------------------------------------------------------------- 1 | placeholder file -------------------------------------------------------------------------------- /servicebots/MusicBots/template/databases/stats/placeholder.txt: -------------------------------------------------------------------------------- 1 | placeholder file -------------------------------------------------------------------------------- /servicebots/MusicBots/template/ecosystem.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | apps : [{ 3 | name: `SYSTEMBOTS_${require('path').resolve(__dirname).split("/")[6]}`, 4 | script: 'index.js', 5 | cron_restart: "0 1 * * *" 6 | }] 7 | }; 8 | -------------------------------------------------------------------------------- /servicebots/MusicBots/template/events/client/debug.js: -------------------------------------------------------------------------------- 1 | //here the event starts 2 | const settings = require(`${process.cwd()}/botconfig/settings.json`); 3 | module.exports = (client, info) => { 4 | if (!settings[`debug-discordjs-logs`]) return; 5 | console.log(String(info).grey); 6 | } 7 | /** 8 | * @INFO 9 | * Bot Coded by Tomato#6966 | https://discord.gg/milrato 10 | * @INFO 11 | * Work for Milrato Development | https://milrato.dev 12 | * @INFO 13 | * Please mention him / Milrato Development, when using this Code! 14 | * @INFO 15 | */ 16 | -------------------------------------------------------------------------------- /servicebots/MusicBots/template/events/client/disconnect.js: -------------------------------------------------------------------------------- 1 | //here the event starts 2 | module.exports = client => { 3 | console.log(`You have been disconnected at ${new Date()}.`.dim) 4 | } 5 | /** 6 | * @INFO 7 | * Bot Coded by Tomato#6966 | https://discord.gg/milrato 8 | * @INFO 9 | * Work for Milrato Development | https://milrato.dev 10 | * @INFO 11 | * Please mention him / Milrato Development, when using this Code! 12 | * @INFO 13 | */ 14 | -------------------------------------------------------------------------------- /servicebots/MusicBots/template/events/client/error.js: -------------------------------------------------------------------------------- 1 | //here the event starts 2 | module.exports = (client, error) => { 3 | console.log(String(error).red.dim); 4 | } 5 | /** 6 | * @INFO 7 | * Bot Coded by Tomato#6966 | https://discord.gg/milrato 8 | * @INFO 9 | * Work for Milrato Development | https://milrato.dev 10 | * @INFO 11 | * Please mention him / Milrato Development, when using this Code! 12 | * @INFO 13 | */ 14 | -------------------------------------------------------------------------------- /servicebots/MusicBots/template/events/client/rateLimit.js: -------------------------------------------------------------------------------- 1 | //here the event starts 2 | const settings = require(`${process.cwd()}/botconfig/settings.json`); 3 | module.exports = (client, rateLimitData) => { 4 | if (!settings["ratelimit-logs"]) return; 5 | console.warn(rateLimitData) 6 | } 7 | /** 8 | * @INFO 9 | * Bot Coded by Tomato#6966 | https://discord.gg/milrato 10 | * @INFO 11 | * Work for Milrato Development | https://milrato.dev 12 | * @INFO 13 | * Please mention him / Milrato Development, when using this Code! 14 | * @INFO 15 | */ 16 | -------------------------------------------------------------------------------- /servicebots/MusicBots/template/events/client/raw.js: -------------------------------------------------------------------------------- 1 | //send raw audio data to the lavalink node 2 | module.exports = (client, d) => { 3 | client.manager?.updateVoiceState(d); 4 | } 5 | -------------------------------------------------------------------------------- /servicebots/MusicBots/template/events/client/reconnecting.js: -------------------------------------------------------------------------------- 1 | //here the event starts 2 | module.exports = client => { 3 | console.log(`Reconnecting at ${new Date()}.`.bgYellow.black) 4 | } 5 | /** 6 | * @INFO 7 | * Bot Coded by Tomato#6966 | https://discord.gg/milrato 8 | * @INFO 9 | * Work for Milrato Development | https://milrato.dev 10 | * @INFO 11 | * Please mention him / Milrato Development, when using this Code! 12 | * @INFO 13 | */ 14 | -------------------------------------------------------------------------------- /servicebots/MusicBots/template/events/client/shardDisconnect.js: -------------------------------------------------------------------------------- 1 | //here the event starts 2 | module.exports = (client, event, id) => { 3 | client.logger(`Shard #${id} Disconnected`.brightRed) 4 | } 5 | /** 6 | * @INFO 7 | * Bot Coded by Tomato#6966 | https://discord.gg/milrato 8 | * @INFO 9 | * Work for Milrato Development | https://milrato.dev 10 | * @INFO 11 | * Please mention him / Milrato Development, when using this Code! 12 | * @INFO 13 | */ 14 | -------------------------------------------------------------------------------- /servicebots/MusicBots/template/events/client/shardError.js: -------------------------------------------------------------------------------- 1 | //here the event starts 2 | module.exports = (client, error, id) => { 3 | client.logger(`Shard #${id} Errored`.brightRed) 4 | } 5 | /** 6 | * @INFO 7 | * Bot Coded by Tomato#6966 | https://discord.gg/milrato 8 | * @INFO 9 | * Work for Milrato Development | https://milrato.dev 10 | * @INFO 11 | * Please mention him / Milrato Development, when using this Code! 12 | * @INFO 13 | */ 14 | -------------------------------------------------------------------------------- /servicebots/MusicBots/template/events/client/shardReady.js: -------------------------------------------------------------------------------- 1 | //here the event starts 2 | module.exports = (client, id) => { 3 | client.logger(`Shard #${id} Ready`.brightGreen) 4 | } 5 | /** 6 | * @INFO 7 | * Bot Coded by Tomato#6966 | https://discord.gg/milrato 8 | * @INFO 9 | * Work for Milrato Development | https://milrato.dev 10 | * @INFO 11 | * Please mention him / Milrato Development, when using this Code! 12 | * @INFO 13 | */ 14 | -------------------------------------------------------------------------------- /servicebots/MusicBots/template/events/client/shardReconnecting.js: -------------------------------------------------------------------------------- 1 | //here the event starts 2 | module.exports = (client, id) => { 3 | client.logger(`Shard #${id} Reconnecting`.brightMagenta) 4 | } 5 | /** 6 | * @INFO 7 | * Bot Coded by Tomato#6966 | https://discord.gg/milrato 8 | * @INFO 9 | * Work for Milrato Development | https://milrato.dev 10 | * @INFO 11 | * Please mention him / Milrato Development, when using this Code! 12 | * @INFO 13 | */ 14 | -------------------------------------------------------------------------------- /servicebots/MusicBots/template/events/client/shardResume.js: -------------------------------------------------------------------------------- 1 | //here the event starts 2 | module.exports = (client, id, replayedEvents) => { 3 | client.logger(`Shard #${id} Resumed`.green) 4 | } 5 | /** 6 | * @INFO 7 | * Bot Coded by Tomato#6966 | https://discord.gg/milrato 8 | * @INFO 9 | * Work for Milrato Development | https://milrato.dev 10 | * @INFO 11 | * Please mention him / Milrato Development, when using this Code! 12 | * @INFO 13 | */ 14 | -------------------------------------------------------------------------------- /servicebots/MusicBots/template/events/client/warn.js: -------------------------------------------------------------------------------- 1 | //here the event starts 2 | module.exports = (client, error) => { 3 | console.log(String(error).yellow.dim); 4 | } 5 | /** 6 | * @INFO 7 | * Bot Coded by Tomato#6966 | https://discord.gg/milrato 8 | * @INFO 9 | * Work for Milrato Development | https://milrato.dev 10 | * @INFO 11 | * Please mention him / Milrato Development, when using this Code! 12 | * @INFO 13 | */ 14 | -------------------------------------------------------------------------------- /servicebots/MusicBots/template/events/guild/channelDelete.js: -------------------------------------------------------------------------------- 1 | //The Module 2 | const { 3 | Permissions 4 | } = require("discord.js") 5 | const config = require(`${process.cwd()}/botconfig/config.json`) 6 | //Log if a Channel gets deleted, and the Bot was in, then delete the player if the player exists! 7 | module.exports = async (client, channel) => { 8 | if (channel.type === "GUILD_VOICE") { 9 | if (channel.members.has(client.user.id)) { 10 | var player = client.manager.players.get(channel.guild.id); 11 | if (!player) return; 12 | if (channel.id === player.voiceChannel) { 13 | //destroy 14 | player.destroy(); 15 | } 16 | } 17 | } 18 | } 19 | 20 | /** 21 | * @INFO 22 | * Bot Coded by Tomato#6966 | https://discord.gg/milrato 23 | * @INFO 24 | * Work for Milrato Development | https://milrato.dev 25 | * @INFO 26 | * Please mention him / Milrato Development, when using this Code! 27 | * @INFO 28 | */ 29 | -------------------------------------------------------------------------------- /servicebots/MusicBots/template/events/guild/guildRemove.js: -------------------------------------------------------------------------------- 1 | //The Module 2 | const { 3 | Permissions 4 | } = require("discord.js") 5 | const config = require(`${process.cwd()}/botconfig/config.json`) 6 | //If the Bot gets Remove from the Guild and there is still a player, remove it ;) 7 | module.exports = async (client, guild) => { 8 | var player = client.manager.players.get(guild.id); 9 | if (!player) return; 10 | if (guild.id == player.guild) { 11 | //destroy 12 | player.destroy(); 13 | } 14 | } 15 | 16 | /** 17 | * @INFO 18 | * Bot Coded by Tomato#6966 | https://discord.gg/milrato 19 | * @INFO 20 | * Work for Milrato Development | https://milrato.dev 21 | * @INFO 22 | * Please mention him / Milrato Development, when using this Code! 23 | * @INFO 24 | */ 25 | -------------------------------------------------------------------------------- /servicebots/MusicBots/template/events/guild/threadCreate.js: -------------------------------------------------------------------------------- 1 | //The Module 2 | module.exports = async (client, thread) => { 3 | try { 4 | if (thread.joinable && !thread.joined) { 5 | await thread.join(); 6 | } 7 | } catch (e) { 8 | console.log(String(e).grey) 9 | } 10 | } 11 | /** 12 | * @INFO 13 | * Bot Coded by Tomato#6966 | https://discord.gg/milrato 14 | * @INFO 15 | * Work for Milrato Development | https://milrato.dev 16 | * @INFO 17 | * Please mention him / Milrato Development, when using this Code! 18 | * @INFO 19 | */ 20 | -------------------------------------------------------------------------------- /servicebots/MusicBots/template/handlers/erelahandler.js: -------------------------------------------------------------------------------- 1 | module.exports = (client) => { 2 | //Create the client 3 | require("./erela_events/creation")(client) 4 | //in there we are requireing the node_events + client and normal events 5 | }; 6 | 7 | /** 8 | * @INFO 9 | * Bot Coded by Tomato#6966 | https://github.com/Tomato6966/discord-js-lavalink-Music-Bot-erela-js 10 | * @INFO 11 | * Work for Milrato Development | https://milrato.dev 12 | * @INFO 13 | * Please mention Him / Milrato Development, when using this Code! 14 | * @INFO 15 | */ 16 | -------------------------------------------------------------------------------- /servicebots/MusicBots/template/handlers/loaddb.js: -------------------------------------------------------------------------------- 1 | const Enmap = require("enmap"); 2 | module.exports = client => { 3 | 4 | client.stats = new Enmap({ 5 | name: "stats", 6 | dataDir: "./databases/stats" 7 | }); 8 | client.musicsettings = new Enmap({ 9 | name: "musicsettings", 10 | dataDir: "./databases/musicsettings" 11 | }); 12 | client.autoresume = new Enmap({ 13 | name: "autoresume", 14 | dataDir: "./databases/musicsettings" 15 | }); 16 | client.settings = new Enmap({ 17 | name: "settings", 18 | dataDir: "./databases/settings" 19 | }); 20 | client.queuesaves = new Enmap({ 21 | name: "queuesaves", 22 | dataDir: "./databases/queuesaves", 23 | ensureProps: false 24 | }); 25 | client.premium = new Enmap({ 26 | name: "premium", 27 | dataDir: "./databases/premium" 28 | }) 29 | 30 | 31 | 32 | 33 | client.premium.ensure("global", { 34 | guilds: [], 35 | }); 36 | 37 | client.stats.ensure("global", { 38 | commands: 0, 39 | songs: 0, 40 | setups: 0 41 | }); 42 | } 43 | -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/.github/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: ['donate.milrato.dev', 'discord.gg/dcdev', 'bero.milrato.dev', 'bittmax.milrato.dev' ] 2 | -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: ['donate.milrato.dev', 'discord.gg/dcdev', 'bero.milrato.dev', 'bittmax.milrato.dev' ] 2 | -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | title: Bug report 5 | labels: bug 6 | assignees: Tomato6966 7 | 8 | --- 9 | 10 | ## **What's your nodejs Version.** 11 | > Show the output of: `node -v` 12 | 13 | ## **What's the version you downloaded the bot?** 14 | > From the releases e.g.: 10.2.0 15 | 16 | ## **Desktop (please complete the following information):** 17 | > - OS: [e.g. iOS] 18 | > - Version [e.g. 22] 19 | 20 | ## **Describe the bug** 21 | > A clear and concise description of what the bug is. 22 | 23 | ## **To Reproduce** 24 | > Steps to reproduce the behavior e.g: 25 | 1. Execute the Command '....' 26 | 2. See error 27 | 28 | ## **Expected behavior** 29 | > A clear and concise description of what you expected to happen. 30 | 31 | ## **Additional context, text and screenshots!** 32 | > Add any other context about the problem here. 33 | -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/.github/ISSUE_TEMPLATE/check-faq-and-wikis-first-.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Check FAQ AND WIKIS FIRST! 3 | about: Before opening an ISSUE, make sure to check the WIKI and the README.MD file 4 | (setup explanation) first! 5 | title: Check FAQ AND WIKIS FIRST! 6 | labels: invalid, wontfix 7 | assignees: '' 8 | 9 | --- 10 | 11 | # [Readme & Installation Guide](https://github.com/Tomato6966/Multipurpose-discord-bot#installation-guide- 12 | 13 | # [WIKI & FAQ](https://github.com/Tomato6966/Multipurpose-discord-bot/wiki#faq) 14 | -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | title: Feature request 5 | labels: enhancement 6 | assignees: '' 7 | 8 | --- 9 | 10 | ## **Is your feature request related to a problem? Please describe.** 11 | > A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 12 | 13 | ## **Describe the solution you'd like** 14 | > A clear and concise description of what you want to happen. 15 | 16 | ## **Describe alternatives you've considered** 17 | > A clear and concise description of any alternative solutions or features you've considered. 18 | 19 | ## **Additional context** 20 | > Add any other context or screenshots about the feature request here. 21 | -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/.github/ISSUE_TEMPLATE/get-general-help.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Get General Help 3 | about: If you need help for hosting, starting, installing, ... the Bot! 4 | title: Get General Help 5 | labels: help wanted, question 6 | assignees: Tomato6966 7 | 8 | --- 9 | 10 | ## **What's your nodejs Version.** 11 | Show the output of: `node -v` 12 | 13 | ## **What's the version you downloaded the bot?** 14 | From the releases e.g.: 10.2.0 15 | 16 | ## **Desktop (please complete the following information):** 17 | > - OS: [e.g. iOS] 18 | > - Version [e.g. 22] 19 | 20 | ## **Additional context, text and screenshots!** 21 | > Add any other context about the problem here. 22 | -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 Tomato6966 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/assets/base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/assets/base.png -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/assets/bot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/assets/bot.png -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/assets/first_leaderboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/assets/first_leaderboard.png -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/assets/fonts/AppleSymbol.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/assets/fonts/AppleSymbol.ttf -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/assets/fonts/Arial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/assets/fonts/Arial.ttf -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/assets/fonts/ArialUnicode.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/assets/fonts/ArialUnicode.ttf -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/assets/fonts/DMSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/assets/fonts/DMSans-Bold.ttf -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/assets/fonts/DMSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/assets/fonts/DMSans-Regular.ttf -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/assets/fonts/Genta.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/assets/fonts/Genta.ttf -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/assets/fonts/STIXGeneral.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/assets/fonts/STIXGeneral.ttf -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/assets/fonts/UbuntuMono-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/assets/fonts/UbuntuMono-Italic.ttf -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/assets/fonts/UbuntuMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/assets/fonts/UbuntuMono.ttf -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/assets/levelup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/assets/levelup.png -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/assets/rankcard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/assets/rankcard.png -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/assets/voice_leaderboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/assets/voice_leaderboard.png -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/assets/welcome/#030303/welcome1frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/assets/welcome/#030303/welcome1frame.png -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/assets/welcome/#030303/welcome1framepb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/assets/welcome/#030303/welcome1framepb.png -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/assets/welcome/#030303/welcome2frame_oben.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/assets/welcome/#030303/welcome2frame_oben.png -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/assets/welcome/#030303/welcome2frame_unten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/assets/welcome/#030303/welcome2frame_unten.png -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/assets/welcome/#030303/welcome3frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/assets/welcome/#030303/welcome3frame.png -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/assets/welcome/#25FA6C/welcome1frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/assets/welcome/#25FA6C/welcome1frame.png -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/assets/welcome/#25FA6C/welcome1framepb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/assets/welcome/#25FA6C/welcome1framepb.png -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/assets/welcome/#25FA6C/welcome2frame_oben.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/assets/welcome/#25FA6C/welcome2frame_oben.png -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/assets/welcome/#25FA6C/welcome2frame_unten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/assets/welcome/#25FA6C/welcome2frame_unten.png -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/assets/welcome/#25FA6C/welcome3frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/assets/welcome/#25FA6C/welcome3frame.png -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/assets/welcome/#3A98F0/welcome1frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/assets/welcome/#3A98F0/welcome1frame.png -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/assets/welcome/#3A98F0/welcome1framepb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/assets/welcome/#3A98F0/welcome1framepb.png -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/assets/welcome/#3A98F0/welcome2frame_oben.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/assets/welcome/#3A98F0/welcome2frame_oben.png -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/assets/welcome/#3A98F0/welcome2frame_unten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/assets/welcome/#3A98F0/welcome2frame_unten.png -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/assets/welcome/#3A98F0/welcome3frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/assets/welcome/#3A98F0/welcome3frame.png -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/assets/welcome/#8525FA/welcome1frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/assets/welcome/#8525FA/welcome1frame.png -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/assets/welcome/#8525FA/welcome1framepb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/assets/welcome/#8525FA/welcome1framepb.png -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/assets/welcome/#8525FA/welcome2frame_oben.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/assets/welcome/#8525FA/welcome2frame_oben.png -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/assets/welcome/#8525FA/welcome2frame_unten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/assets/welcome/#8525FA/welcome2frame_unten.png -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/assets/welcome/#8525FA/welcome3frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/assets/welcome/#8525FA/welcome3frame.png -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/assets/welcome/#FA2525/welcome1frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/assets/welcome/#FA2525/welcome1frame.png -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/assets/welcome/#FA2525/welcome1framepb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/assets/welcome/#FA2525/welcome1framepb.png -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/assets/welcome/#FA2525/welcome2frame_oben.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/assets/welcome/#FA2525/welcome2frame_oben.png -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/assets/welcome/#FA2525/welcome2frame_unten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/assets/welcome/#FA2525/welcome2frame_unten.png -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/assets/welcome/#FA2525/welcome3frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/assets/welcome/#FA2525/welcome3frame.png -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/assets/welcome/#FA9E25/welcome1frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/assets/welcome/#FA9E25/welcome1frame.png -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/assets/welcome/#FA9E25/welcome1framepb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/assets/welcome/#FA9E25/welcome1framepb.png -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/assets/welcome/#FA9E25/welcome2frame_oben.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/assets/welcome/#FA9E25/welcome2frame_oben.png -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/assets/welcome/#FA9E25/welcome2frame_unten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/assets/welcome/#FA9E25/welcome2frame_unten.png -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/assets/welcome/#FA9E25/welcome3frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/assets/welcome/#FA9E25/welcome3frame.png -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/assets/welcome/#FAFA25/welcome1frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/assets/welcome/#FAFA25/welcome1frame.png -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/assets/welcome/#FAFA25/welcome1framepb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/assets/welcome/#FAFA25/welcome1framepb.png -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/assets/welcome/#FAFA25/welcome2frame_oben.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/assets/welcome/#FAFA25/welcome2frame_oben.png -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/assets/welcome/#FAFA25/welcome2frame_unten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/assets/welcome/#FAFA25/welcome2frame_unten.png -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/assets/welcome/#FAFA25/welcome3frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/assets/welcome/#FAFA25/welcome3frame.png -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/assets/welcome/#FFFFF9/welcome1frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/assets/welcome/#FFFFF9/welcome1frame.png -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/assets/welcome/#FFFFF9/welcome1framepb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/assets/welcome/#FFFFF9/welcome1framepb.png -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/assets/welcome/#FFFFF9/welcome2frame_oben.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/assets/welcome/#FFFFF9/welcome2frame_oben.png -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/assets/welcome/#FFFFF9/welcome2frame_unten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/assets/welcome/#FFFFF9/welcome2frame_unten.png -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/assets/welcome/#FFFFF9/welcome3frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/assets/welcome/#FFFFF9/welcome3frame.png -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/assets/welcome/WHITE/welcome1frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/assets/welcome/WHITE/welcome1frame.png -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/assets/welcome/WHITE/welcome1framepb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/assets/welcome/WHITE/welcome1framepb.png -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/assets/welcome/WHITE/welcome2frame_oben.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/assets/welcome/WHITE/welcome2frame_oben.png -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/assets/welcome/WHITE/welcome2frame_unten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/assets/welcome/WHITE/welcome2frame_unten.png -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/assets/welcome/WHITE/welcome3frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/assets/welcome/WHITE/welcome3frame.png -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/botconfig/advertisement.json: -------------------------------------------------------------------------------- 1 | { 2 | "adenabled": false, 3 | "statusad": { 4 | "name": "Bero-Host.de | Host Bots, Websites and Games 4 CHEAP", 5 | "type": "PLAYING", 6 | "url": "https://twitch.tv/#" 7 | }, 8 | "spacedot": "・", 9 | "textad": "> ***[Milrato Development](https://discord.gg/FQGXbypRf8) partnered with:***\n> [**Bero-Host.de**](https://bero.milrato.eu)" 10 | } -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/botconfig/embed.json: -------------------------------------------------------------------------------- 1 | { 2 | "color": "#6861fe", 3 | "wrongcolor": "#e01e01", 4 | "footertext": "Nexuss", 5 | "footericon": "https://media.discordapp.net/attachments/966414711002398750/969933844033728522/IMG_0698.png" 6 | } -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/botconfig/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "voice_log_console": false 3 | } -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/botconfig/songoftheday.json: -------------------------------------------------------------------------------- 1 | { 2 | "track": { 3 | "url": "https://www.youtube.com/watch?v=gADgM89skZQ", 4 | "title": "Tones and I - Dance Monkey (Lyrics)", 5 | "duration": "03:29 | 209 Seconds", 6 | "thumbnail": "https://img.youtube.com/vi/gADgM89skZQ/default.jpg" 7 | }, 8 | "message": "Today It's a masterpeace which gives you happyness and old feelings." 9 | } -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/🎮 MiniGames/randomcolor.js: -------------------------------------------------------------------------------- 1 | 2 | const { MessageEmbed } = require("discord.js"); 3 | const config = require(`${process.cwd()}/botconfig/config.json`); 4 | var ee = require(`${process.cwd()}/botconfig/embed.json`); 5 | 6 | module.exports = { 7 | name: "randomcolor", 8 | aliases: ["randomhexcolor"], 9 | category: "🎮 MiniGames", 10 | description: "Get a random color?", 11 | usage: "randomcolor", 12 | type: "text", 13 | run: async (client, message, args, cmduser, text, prefix) => { 14 | let es = client.settings.get(message.guild.id, "embed");let ls = client.settings.get(message.guild.id, "language") 15 | if(!client.settings.get(message.guild.id, "MINIGAMES")){ 16 | return message.reply(new MessageEmbed() 17 | .setColor(es.wrongcolor) 18 | .setFooter(client.getFooter(es)) 19 | .setTitle(client.la[ls].common.disabled.title) 20 | .setDescription(require(`${process.cwd()}/handlers/functions`).handlemsg(client.la[ls].common.disabled.description, {prefix: prefix})) 21 | ); 22 | } 23 | message.reply(randomHexColor()) 24 | } 25 | } 26 | function randomHexColor() { 27 | return ( 28 | '#' + 29 | ('000000' + Math.floor(Math.random() * 16777215).toString(16)).slice(-6) 30 | ); 31 | } -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/🎮 MiniGames/reverse.js: -------------------------------------------------------------------------------- 1 | const { MessageEmbed } = require("discord.js"); 2 | const config = require(`${process.cwd()}/botconfig/config.json`); 3 | var ee = require(`${process.cwd()}/botconfig/embed.json`); 4 | 5 | module.exports = { 6 | name: "reverse", 7 | aliases: ["reversetext"], 8 | category: "🎮 MiniGames", 9 | description: "Would you Rather?", 10 | usage: "reverse TEXT", 11 | type: "text", 12 | run: async (client, message, args, cmduser, text, prefix) => { 13 | let es = client.settings.get(message.guild.id, "embed");let ls = client.settings.get(message.guild.id, "language") 14 | if(!client.settings.get(message.guild.id, "MINIGAMES")){ 15 | return message.reply(new MessageEmbed() 16 | .setColor(es.wrongcolor) 17 | .setFooter(client.getFooter(es)) 18 | .setTitle(client.la[ls].common.disabled.title) 19 | .setDescription(require(`${process.cwd()}/handlers/functions`).handlemsg(client.la[ls].common.disabled.description, {prefix: prefix})) 20 | ); 21 | } 22 | message.reply(reverseText(args[0] ? args.join(" ") : "No Text Added! Please Retry!")) 23 | 24 | } 25 | } 26 | function reverseText(string) { 27 | return string.split('').reverse().join(''); 28 | } -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/📈 Ranking/addlevel.js: -------------------------------------------------------------------------------- 1 | //Here the command starts 2 | const config = require(`${process.cwd()}/botconfig/config.json`) 3 | var ee = require(`${process.cwd()}/botconfig/embed.json`) 4 | module.exports = { 5 | //definition 6 | name: "addlevel", //the name of the command 7 | category: "📈 Ranking", //the category this will be listed at, for the help cmd 8 | aliases: [""], //every parameter can be an alias 9 | cooldown: 4, //this will set it to a 4 second cooldown 10 | usage: "addlevel <@User> ", //this is for the help command for EACH cmd 11 | description: "Add a specific amount of Levels to a User", //the description of the command 12 | type: "manage", 13 | //running the command with the parameters: client, message, args, user, text, prefix 14 | run: async (client, message, args, cmduser, text, prefix) => { 15 | 16 | 17 | } 18 | } 19 | //-CODED-BY-TOMATO#6966-// -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/📈 Ranking/addpoints.js: -------------------------------------------------------------------------------- 1 | //Here the command starts 2 | const config = require(`${process.cwd()}/botconfig/config.json`) 3 | var ee = require(`${process.cwd()}/botconfig/embed.json`) 4 | module.exports = { 5 | //definition 6 | name: "addpoints", //the name of the command 7 | category: "📈 Ranking", //the category this will be listed at, for the help cmd 8 | aliases: [""], //every parameter can be an alias 9 | cooldown: 4, //this will set it to a 4 second cooldown 10 | usage: "addpoints <@User> ", //this is for the help command for EACH cmd 11 | description: "Add a specific amount of Points to a User", //the description of the command 12 | type: "manage", 13 | //running the command with the parameters: client, message, args, user, text, prefix 14 | run: async (client, message, args, cmduser, text, prefix) => { 15 | 16 | 17 | } 18 | } 19 | //-CODED-BY-TOMATO#6966-// -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/📈 Ranking/addrandomall.js: -------------------------------------------------------------------------------- 1 | //Here the command starts 2 | const config = require(`${process.cwd()}/botconfig/config.json`) 3 | var ee = require(`${process.cwd()}/botconfig/embed.json`) 4 | module.exports = { 5 | //definition 6 | name: "addrandomall", //the name of the command 7 | category: "📈 Ranking", //the category this will be listed at, for the help cmd 8 | aliases: [""], //every parameter can be an alias 9 | cooldown: 4, //this will set it to a 4 second cooldown 10 | usage: "addrandomall ", //this is for the help command for EACH cmd 11 | description: "Add a random amount of Points to everyone", //the description of the command 12 | type: "manage", 13 | //running the command with the parameters: client, message, args, user, text, prefix 14 | run: async (client, message, args, cmduser, text, prefix) => { 15 | 16 | 17 | } 18 | } 19 | //-CODED-BY-TOMATO#6966-// -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/📈 Ranking/leaderboard.js: -------------------------------------------------------------------------------- 1 | //Here the command starts 2 | const config = require(`${process.cwd()}/botconfig/config.json`) 3 | var ee = require(`${process.cwd()}/botconfig/embed.json`) 4 | module.exports = { 5 | //definition 6 | name: "leaderboard", //the name of the command 7 | category: "📈 Ranking", //the category this will be listed at, for the help cmd 8 | aliases: ["lb", "top", "chatleaderboard", "chatlb", "chattop", "textleaderboard", "textlb", "texttop"], //every parameter can be an alias 9 | cooldown: 4, //this will set it to a 4 second cooldown 10 | usage: "leaderboard", //this is for the help command for EACH cmd 11 | description: "Shows the Top 10 Leaderboard", //the description of the command 12 | type: "info", 13 | //running the command with the parameters: client, message, args, user, text, prefix 14 | run: async (client, message, args, cmduser, text, prefix) => { 15 | 16 | 17 | } 18 | } 19 | //-CODED-BY-TOMATO#6966-// -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/📈 Ranking/levelinghelp.js: -------------------------------------------------------------------------------- 1 | //Here the command starts 2 | const config = require(`${process.cwd()}/botconfig/config.json`) 3 | var ee = require(`${process.cwd()}/botconfig/embed.json`) 4 | module.exports = { 5 | //definition 6 | name: "levelinghelp", //the name of the command 7 | category: "📈 Ranking", //the category this will be listed at, for the help cmd 8 | aliases: [""], //every parameter can be an alias 9 | cooldown: 4, //this will set it to a 4 second cooldown 10 | usage: "levelinghelp", //this is for the help command for EACH cmd 11 | description: "Shows the help for leveling", //the description of the command 12 | type: "info", 13 | //running the command with the parameters: client, message, args, user, text, prefix 14 | run: async (client, message, args, cmduser, text, prefix) => { 15 | 16 | 17 | } 18 | } 19 | //-CODED-BY-TOMATO#6966-// -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/📈 Ranking/rank.js: -------------------------------------------------------------------------------- 1 | //Here the command starts 2 | const config = require(`${process.cwd()}/botconfig/config.json`) 3 | var ee = require(`${process.cwd()}/botconfig/embed.json`) 4 | module.exports = { 5 | //definition 6 | name: "rank", //the name of the command 7 | category: "📈 Ranking", //the category this will be listed at, for the help cmd 8 | aliases: ["textrank", "chatrank"], //every parameter can be an alias 9 | cooldown: 4, //this will set it to a 4 second cooldown 10 | usage: "rank [@User]", //this is for the help command for EACH cmd 11 | description: "Shows the Rank of a User", //the description of the command 12 | type: "info", 13 | //running the command with the parameters: client, message, args, user, text, prefix 14 | run: async (client, message, args, cmduser, text, prefix) => { 15 | 16 | 17 | } 18 | } 19 | //-CODED-BY-TOMATO#6966-// -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/📈 Ranking/registerall.js: -------------------------------------------------------------------------------- 1 | //Here the command starts 2 | const config = require(`${process.cwd()}/botconfig/config.json`) 3 | var ee = require(`${process.cwd()}/botconfig/embed.json`) 4 | module.exports = { 5 | //definition 6 | name: "registerall", //the name of the command 7 | category: "📈 Ranking", //the category this will be listed at, for the help cmd 8 | aliases: [""], //every parameter can be an alias 9 | cooldown: 4, //this will set it to a 4 second cooldown 10 | usage: "registerall", //this is for the help command for EACH cmd 11 | description: "Register everyone in the Server to the Database", //the description of the command 12 | type: "manage", 13 | //running the command with the parameters: client, message, args, user, text, prefix 14 | run: async (client, message, args, cmduser, text, prefix) => { 15 | 16 | 17 | } 18 | } 19 | //-CODED-BY-TOMATO#6966-// -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/📈 Ranking/removelevel.js: -------------------------------------------------------------------------------- 1 | //Here the command starts 2 | const config = require(`${process.cwd()}/botconfig/config.json`) 3 | var ee = require(`${process.cwd()}/botconfig/embed.json`) 4 | module.exports = { 5 | //definition 6 | name: "removelevel", //the name of the command 7 | category: "📈 Ranking", //the category this will be listed at, for the help cmd 8 | aliases: [""], //every parameter can be an alias 9 | cooldown: 4, //this will set it to a 4 second cooldown 10 | usage: "removelevel <@User> ", //this is for the help command for EACH cmd 11 | description: "Remove a specific amount of Levels to a User", //the description of the command 12 | type: "manage", 13 | //running the command with the parameters: client, message, args, user, text, prefix 14 | run: async (client, message, args, cmduser, text, prefix) => { 15 | 16 | 17 | } 18 | } 19 | //-CODED-BY-TOMATO#6966-// -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/📈 Ranking/removepoints.js: -------------------------------------------------------------------------------- 1 | //Here the command starts 2 | const config = require(`${process.cwd()}/botconfig/config.json`) 3 | var ee = require(`${process.cwd()}/botconfig/embed.json`) 4 | module.exports = { 5 | //definition 6 | name: "removepoints", //the name of the command 7 | category: "📈 Ranking", //the category this will be listed at, for the help cmd 8 | aliases: [""], //every parameter can be an alias 9 | cooldown: 4, //this will set it to a 4 second cooldown 10 | usage: "removepoints <@User> ", //this is for the help command for EACH cmd 11 | description: "Remove a specific amount of Points to a User", //the description of the command 12 | type: "manage", 13 | //running the command with the parameters: client, message, args, user, text, prefix 14 | run: async (client, message, args, cmduser, text, prefix) => { 15 | 16 | 17 | } 18 | } 19 | //-CODED-BY-TOMATO#6966-// -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/📈 Ranking/resetranking.js: -------------------------------------------------------------------------------- 1 | //Here the command starts 2 | const config = require(`${process.cwd()}/botconfig/config.json`) 3 | var ee = require(`${process.cwd()}/botconfig/embed.json`) 4 | module.exports = { 5 | //definition 6 | name: "resetranking", //the name of the command 7 | category: "📈 Ranking", //the category this will be listed at, for the help cmd 8 | aliases: [""], //every parameter can be an alias 9 | cooldown: 4, //this will set it to a 4 second cooldown 10 | usage: "resetranking <@User> ", //this is for the help command for EACH cmd 11 | description: "Resets the ranking of a User", //the description of the command 12 | type: "manage", 13 | //running the command with the parameters: client, message, args, user, text, prefix 14 | run: async (client, message, args, cmduser, text, prefix) => { 15 | 16 | 17 | } 18 | } 19 | //-CODED-BY-TOMATO#6966-// -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/📈 Ranking/resetrankingall.js: -------------------------------------------------------------------------------- 1 | //Here the command starts 2 | const config = require(`${process.cwd()}/botconfig/config.json`) 3 | var ee = require(`${process.cwd()}/botconfig/embed.json`) 4 | module.exports = { 5 | //definition 6 | name: "resetrankingall", //the name of the command 7 | category: "📈 Ranking", //the category this will be listed at, for the help cmd 8 | aliases: [""], //every parameter can be an alias 9 | cooldown: 4, //this will set it to a 4 second cooldown 10 | usage: "resetrankingall", //this is for the help command for EACH cmd 11 | description: "Reset ranking of everyone in this Server", //the description of the command 12 | type: "manage", 13 | //running the command with the parameters: client, message, args, user, text, prefix 14 | run: async (client, message, args, cmduser, text, prefix) => { 15 | 16 | 17 | } 18 | } 19 | //-CODED-BY-TOMATO#6966-// -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/📈 Ranking/setlevel.js: -------------------------------------------------------------------------------- 1 | //Here the command starts 2 | const config = require(`${process.cwd()}/botconfig/config.json`) 3 | var ee = require(`${process.cwd()}/botconfig/embed.json`) 4 | module.exports = { 5 | //definition 6 | name: "setlevel", //the name of the command 7 | category: "📈 Ranking", //the category this will be listed at, for the help cmd 8 | aliases: [""], //every parameter can be an alias 9 | cooldown: 4, //this will set it to a 4 second cooldown 10 | usage: "setlevel <@User> ", //this is for the help command for EACH cmd 11 | description: "Set a specific amount of Levels to a User", //the description of the command 12 | type: "manage", 13 | //running the command with the parameters: client, message, args, user, text, prefix 14 | run: async (client, message, args, cmduser, text, prefix) => { 15 | 16 | } 17 | } 18 | //-CODED-BY-TOMATO#6966-// -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/📈 Ranking/setpoints.js: -------------------------------------------------------------------------------- 1 | //Here the command starts 2 | const config = require(`${process.cwd()}/botconfig/config.json`) 3 | var ee = require(`${process.cwd()}/botconfig/embed.json`) 4 | module.exports = { 5 | //definition 6 | name: "setpoints", //the name of the command 7 | category: "📈 Ranking", //the category this will be listed at, for the help cmd 8 | aliases: [""], //every parameter can be an alias 9 | cooldown: 4, //this will set it to a 4 second cooldown 10 | usage: "setpoints <@User> ", //this is for the help command for EACH cmd 11 | description: "Set a specific amount of Points to a User", //the description of the command 12 | type: "manage", 13 | //running the command with the parameters: client, message, args, user, text, prefix 14 | run: async (client, message, args, cmduser, text, prefix) => { 15 | 16 | 17 | } 18 | } 19 | //-CODED-BY-TOMATO#6966-// -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/📈 Ranking/voiceleaderboard.js: -------------------------------------------------------------------------------- 1 | //Here the command starts 2 | const config = require(`${process.cwd()}/botconfig/config.json`) 3 | var ee = require(`${process.cwd()}/botconfig/embed.json`) 4 | module.exports = { 5 | //definition 6 | name: "voiceleaderboard", //the name of the command 7 | category: "📈 Ranking", //the category this will be listed at, for the help cmd 8 | aliases: ["voicelb", "voicetop"], //every parameter can be an alias 9 | cooldown: 4, //this will set it to a 4 second cooldown 10 | usage: "voiceleaderboard", //this is for the help command for EACH cmd 11 | description: "Shows the Top 10 Voice-Leaderboard", //the description of the command 12 | type: "info", 13 | //running the command with the parameters: client, message, args, user, text, prefix 14 | run: async (client, message, args, cmduser, text, prefix) => { 15 | 16 | 17 | } 18 | } 19 | //-CODED-BY-TOMATO#6966-// -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/📈 Ranking/voicerank.js: -------------------------------------------------------------------------------- 1 | //Here the command starts 2 | const config = require(`${process.cwd()}/botconfig/config.json`) 3 | var ee = require(`${process.cwd()}/botconfig/embed.json`) 4 | module.exports = { 5 | //definition 6 | name: "voicerank", //the name of the command 7 | category: "📈 Ranking", //the category this will be listed at, for the help cmd 8 | aliases: [""], //every parameter can be an alias 9 | cooldown: 4, //this will set it to a 4 second cooldown 10 | usage: "voicerank [@User]", //this is for the help command for EACH cmd 11 | description: "Shows the Voice-Rank of a User + Voice-Time!", //the description of the command 12 | type: "info", 13 | //running the command with the parameters: client, message, args, user, text, prefix 14 | run: async (client, message, args, cmduser, text, prefix) => { 15 | 16 | 17 | } 18 | } 19 | //-CODED-BY-TOMATO#6966-// -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/a-wow.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/a-wow.m4a -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/abdi.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/abdi.mp3 -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/afewmomentslater.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/afewmomentslater.m4a -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/ahshit.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/ahshit.mp3 -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/airhorn.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/airhorn.m4a -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/amogus.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/amogus.m4a -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/araara.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/araara.mp3 -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/bhau.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/bhau.mp3 -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/bruh.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/bruh.mp3 -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/cuteuwu.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/cuteuwu.mp3 -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/dattebayo.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/dattebayo.m4a -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/disconnected.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/disconnected.mp3 -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/fart.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/fart.mp3 -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/game-over.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/game-over.wav -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/giggle.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/giggle.mp3 -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/gimme-ohyeah.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/gimme-ohyeah.m4a -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/ha-gay.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/ha-gay.mp3 -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/hellomf.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/hellomf.mp3 -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/honk.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/honk.mp3 -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/ilikecutg.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/ilikecutg.m4a -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/illuminati.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/illuminati.m4a -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/iphone-notification.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/iphone-notification.m4a -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/john-cena.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/john-cena.mp3 -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/kuss-digga.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/kuss-digga.mp3 -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/laugh.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/laugh.mp3 -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/magic.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/magic.mp3 -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/margayamc.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/margayamc.mp3 -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/moin-meister.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/moin-meister.mp3 -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/nani.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/nani.mp3 -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/nogodno.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/nogodno.m4a -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/oioi.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/oioi.mp3 -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/oioioi.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/oioioi.mp3 -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/onichan.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/onichan.mp3 -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/pew-pew.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/pew-pew.mp3 -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/ph-intro.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/ph-intro.mp3 -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/quack-quack.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/quack-quack.mp3 -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/rickroll.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/rickroll.mp3 -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/samsung-notification.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/samsung-notification.m4a -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/sheesh.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/sheesh.mp3 -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/sike.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/sike.m4a -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/silly-fart.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/silly-fart.mp3 -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/skype.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/skype.m4a -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/suiii.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/suiii.mp3 -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/superidol.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/superidol.m4a -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/surprisemf.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/surprisemf.mp3 -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/sus.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/sus.m4a -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/uwu.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/uwu.mp3 -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/verpissdich.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/verpissdich.mp3 -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/wetfart.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/wetfart.m4a -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/wow.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/wow.mp3 -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/wryd-stepbro.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/commands/🔊 Soundboard/audio/wryd-stepbro.m4a -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/🔞 NSFW/2dfeet.js: -------------------------------------------------------------------------------- 1 | const client = require('nekos.life'); 2 | const Discord = require('discord.js') 3 | const neko = new client(); 4 | const config = require(`${process.cwd()}/botconfig/config.json`) 5 | const { 6 | MessageEmbed, MessageAttachment 7 | } = require('discord.js') 8 | module.exports = { 9 | name: "2dfeet", 10 | category: "🔞 NSFW", 11 | usage: "2dfeet", 12 | type: "anime", 13 | run: async (client, message, args, cmduser, text, prefix) => { 14 | 15 | let es = client.settings.get(message.guild.id, "embed");let ls = client.settings.get(message.guild.id, "language") 16 | if (!client.settings.get(message.guild.id, "NSFW")) { 17 | const x = new MessageEmbed() 18 | .setColor(es.wrongcolor) 19 | .setFooter(client.getFooter(es)) 20 | .setTitle(client.la[ls].common.disabled.title) 21 | .setDescription(require(`${process.cwd()}/handlers/functions`).handlemsg(client.la[ls].common.disabled.description, {prefix: prefix})) 22 | return message.reply({embeds: [x]}); 23 | } 24 | if (!message.channel.nsfw) return message.reply(eval(client.la[ls]["cmds"]["nsfw"]["2danal"]["variable1"])).then(msg => { message.react('💢'); msg.delete({ timeout: 3000 }) }) 25 | let owo = (await neko.nsfw.feet()); 26 | message.reply({content: `${owo.url}`}); 27 | } 28 | }; -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/🔞 NSFW/db/asmr.json: -------------------------------------------------------------------------------- 1 | ["https://cdn.discordapp.com/attachments/734607419795308674/913389482923933706/Snapchat-1727673714.mp4","https://cdn.discordapp.com/attachments/734607419795308674/913389483456614471/Snapchat-1080360193.mp4","https://cdn.discordapp.com/attachments/734607419795308674/913389483804729344/Snapchat-1517707073.mp4","https://cdn.discordapp.com/attachments/734607419795308674/913112807485096016/GIF111.mp4","https://cdn.discordapp.com/attachments/734607419795308674/899953439088463899/My_Video.mp4","https://cdn.discordapp.com/attachments/734607419795308674/885426349014122536/Snapchat-504432241.mp4","https://cdn.discordapp.com/attachments/734607419795308674/852022663899250766/akabot.mp4","https://cdn.discordapp.com/attachments/734607419795308674/831676109132398612/video0.mp4","https://cdn.discordapp.com/attachments/734607419795308674/785671520591806494/480P_2000K_357670542.mp4"] -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/🔞 NSFW/db/horror.json: -------------------------------------------------------------------------------- 1 | ["https://cdn.discordapp.com/attachments/856911455541788702/893354348686475274/My_NIghtmare_2_Mp4.mp4","https://cdn.discordapp.com/attachments/856911455541788702/888515872996610068/Screenshot_20210917-033759_Twitter.jpg","https://cdn.discordapp.com/attachments/856911455541788702/859154208971816961/image0.png","https://cdn.discordapp.com/attachments/856911455541788702/858429353213427752/received_397493588266758.jpeg","https://cdn.discordapp.com/attachments/856911455541788702/856940641191854090/0TW_cd5mghb66vhw.mp4","https://cdn.discordapp.com/attachments/856911455541788702/856940005183717376/image0.jpg","https://cdn.discordapp.com/attachments/856911455541788702/856939056754589696/image0.jpg","https://cdn.discordapp.com/attachments/856911455541788702/856938264632229898/image0.jpg","https://cdn.discordapp.com/attachments/856911455541788702/856937935659991060/image0.jpg","https://cdn.discordapp.com/attachments/856911455541788702/856934178230370304/image0.jpg","https://cdn.discordapp.com/attachments/856911455541788702/856933216304889856/image0.png"] -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/🔞 NSFW/db/joi.json: -------------------------------------------------------------------------------- 1 | ["https://cdn.discordapp.com/attachments/898441613326553138/914207957414203432/CrystalJerkOff.gif","https://cdn.discordapp.com/attachments/898441613326553138/914207533005144225/506_1000.gif","https://cdn.discordapp.com/attachments/898441613326553138/914207504873971772/2907cab3-b81f-42ec-aaf3-5f57f623e930.gif","https://cdn.discordapp.com/attachments/898441613326553138/903833933412708392/Conner_Jay__Cum_on_my_Face_Daddy_720p.mp4","https://cdn.discordapp.com/attachments/898441613326553138/899809095954096178/Emanuelly_Raquel_Joi.mp4"] -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/🔞 NSFW/db/rimming.json: -------------------------------------------------------------------------------- 1 | ["https://cdn.discordapp.com/attachments/863012783694938112/877515284758528050/image0.gif","https://cdn.discordapp.com/attachments/863012783694938112/875644282101440542/image0.gif","https://cdn.discordapp.com/attachments/863012783694938112/875644275830956032/image0.gif","https://cdn.discordapp.com/attachments/863012783694938112/875029527229759578/720P_4000K_351107542.mp4","https://cdn.discordapp.com/attachments/863012783694938112/875007503618945154/image0.gif","https://cdn.discordapp.com/attachments/863012783694938112/863908412172795934/MandyMuse1.gif"] -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/🔞 NSFW/db/uniform.json: -------------------------------------------------------------------------------- 1 | ["https://cdn.discordapp.com/attachments/871600433943183380/914218467345985586/Screenshot_20211121-181402_Facebook.jpg","https://cdn.discordapp.com/attachments/871600433943183380/894664901048537098/Screenshot_20211004-221603_Gallery.jpg","https://cdn.discordapp.com/attachments/871600433943183380/886672335728427059/Snapchat-780851060.jpg","https://cdn.discordapp.com/attachments/871600433943183380/886672336034607144/Snapchat-21534914.jpg","https://cdn.discordapp.com/attachments/871600433943183380/884361868469227520/EbonySoldierFucked.mp4","https://cdn.discordapp.com/attachments/871600433943183380/873383436465872906/image0.gif","https://cdn.discordapp.com/attachments/871600433943183380/871796392916582420/35585.gif","https://cdn.discordapp.com/attachments/871600433943183380/871702097849122886/image0.jpg","https://cdn.discordapp.com/attachments/871600433943183380/871699959441948673/image0.jpg"] -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/🔞 NSFW/gasm.js: -------------------------------------------------------------------------------- 1 | const client = require('nekos.life'); 2 | const Discord = require('discord.js') 3 | const { 4 | MessageEmbed 5 | } = require('discord.js') 6 | const neko = new client(); 7 | const config = require(`${process.cwd()}/botconfig/config.json`) 8 | module.exports = { 9 | name: "gasm", 10 | category: "🔞 NSFW", 11 | usage: "gasm", 12 | type: "anime", 13 | run: async (client, message, args, cmduser, text, prefix) => { 14 | 15 | let es = client.settings.get(message.guild.id, "embed"); 16 | let ls = client.settings.get(message.guild.id, "language") 17 | if (!client.settings.get(message.guild.id, "NSFW")) { 18 | const x = new MessageEmbed() 19 | .setColor(es.wrongcolor) 20 | .setFooter(client.getFooter(es)) 21 | .setTitle(client.la[ls].common.disabled.title) 22 | .setDescription(require(`${process.cwd()}/handlers/functions`).handlemsg(client.la[ls].common.disabled.description, { 23 | prefix: prefix 24 | })) 25 | return message.reply({ 26 | embeds: [x] 27 | }); 28 | } 29 | if (!message.channel.nsfw) return message.reply(eval(client.la[ls]["cmds"]["nsfw"]["anal"]["variable2"])) 30 | let owo = (await neko.nsfw.gasm()); 31 | message.reply({ 32 | content: `${owo.url}` 33 | }); 34 | } 35 | }; -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/🔞 NSFW/holo.js: -------------------------------------------------------------------------------- 1 | const client = require('nekos.life'); 2 | const Discord = require('discord.js') 3 | const neko = new client(); 4 | const { 5 | MessageEmbed 6 | } = require('discord.js') 7 | const config = require(`${process.cwd()}/botconfig/config.json`) 8 | module.exports = { 9 | name: "holo", 10 | category: "🔞 NSFW", 11 | usage: "holo", 12 | type: "anime", 13 | run: async (client, message, args, cmduser, text, prefix) => { 14 | 15 | let es = client.settings.get(message.guild.id, "embed"); 16 | let ls = client.settings.get(message.guild.id, "language") 17 | if (!client.settings.get(message.guild.id, "NSFW")) { 18 | const x = new MessageEmbed() 19 | .setColor(es.wrongcolor) 20 | .setFooter(client.getFooter(es)) 21 | .setTitle(client.la[ls].common.disabled.title) 22 | .setDescription(require(`${process.cwd()}/handlers/functions`).handlemsg(client.la[ls].common.disabled.description, { 23 | prefix: prefix 24 | })) 25 | return message.reply({ 26 | embeds: [x] 27 | }); 28 | } 29 | if (!message.channel.nsfw) return message.reply(eval(client.la[ls]["cmds"]["nsfw"]["anal"]["variable2"])) 30 | let owo = (await neko.nsfw.holo()); 31 | message.reply({ 32 | content: `${owo.url}` 33 | }); 34 | } 35 | }; -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/🔞 NSFW/holoero.js: -------------------------------------------------------------------------------- 1 | const client = require('nekos.life'); 2 | const Discord = require('discord.js') 3 | const neko = new client(); 4 | const { 5 | MessageEmbed 6 | } = require('discord.js') 7 | const config = require(`${process.cwd()}/botconfig/config.json`) 8 | module.exports = { 9 | name: "holoero", 10 | category: "🔞 NSFW", 11 | usage: "holoero", 12 | type: "anime", 13 | run: async (client, message, args, cmduser, text, prefix) => { 14 | 15 | let es = client.settings.get(message.guild.id, "embed"); 16 | let ls = client.settings.get(message.guild.id, "language") 17 | if (!client.settings.get(message.guild.id, "NSFW")) { 18 | const x = new MessageEmbed() 19 | .setColor(es.wrongcolor) 20 | .setFooter(client.getFooter(es)) 21 | .setTitle(client.la[ls].common.disabled.title) 22 | .setDescription(require(`${process.cwd()}/handlers/functions`).handlemsg(client.la[ls].common.disabled.description, { 23 | prefix: prefix 24 | })) 25 | return message.reply({ 26 | embeds: [x] 27 | }); 28 | } 29 | if (!message.channel.nsfw) return message.reply(eval(client.la[ls]["cmds"]["nsfw"]["anal"]["variable2"])) 30 | let owo = (await neko.nsfw.holoEro()); 31 | message.reply({ 32 | content: `${owo.url}` 33 | }); 34 | } 35 | }; -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/🔞 NSFW/keta.js: -------------------------------------------------------------------------------- 1 | const client = require('nekos.life'); 2 | const Discord = require('discord.js') 3 | const { 4 | MessageEmbed 5 | } = require('discord.js') 6 | const neko = new client(); 7 | const config = require(`${process.cwd()}/botconfig/config.json`) 8 | module.exports = { 9 | name: "keta", 10 | category: "🔞 NSFW", 11 | usage: "keta", 12 | type: "anime", 13 | run: async (client, message, args, cmduser, text, prefix) => { 14 | 15 | let es = client.settings.get(message.guild.id, "embed"); 16 | let ls = client.settings.get(message.guild.id, "language") 17 | if (!client.settings.get(message.guild.id, "NSFW")) { 18 | const x = new MessageEmbed() 19 | .setColor(es.wrongcolor) 20 | .setFooter(client.getFooter(es)) 21 | .setTitle(client.la[ls].common.disabled.title) 22 | .setDescription(require(`${process.cwd()}/handlers/functions`).handlemsg(client.la[ls].common.disabled.description, { 23 | prefix: prefix 24 | })) 25 | return message.reply({ 26 | embeds: [x] 27 | }); 28 | } 29 | if (!message.channel.nsfw) return message.reply(eval(client.la[ls]["cmds"]["nsfw"]["anal"]["variable2"])) 30 | let owo = (await neko.nsfw.keta()); 31 | 32 | message.reply({ 33 | content: `${owo.url}` 34 | }); 35 | } 36 | }; -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/commands/🔞 NSFW/trap.js: -------------------------------------------------------------------------------- 1 | const client = require('nekos.life'); 2 | const Discord = require('discord.js') 3 | const neko = new client(); 4 | const { 5 | MessageEmbed 6 | } = require('discord.js') 7 | const config = require(`${process.cwd()}/botconfig/config.json`) 8 | module.exports = { 9 | name: "trap", 10 | category: "🔞 NSFW", 11 | usage: "trap", 12 | type: "anime", 13 | run: async (client, message, args, cmduser, text, prefix) => { 14 | 15 | let es = client.settings.get(message.guild.id, "embed"); 16 | let ls = client.settings.get(message.guild.id, "language") 17 | if (!client.settings.get(message.guild.id, "NSFW")) { 18 | const x = new MessageEmbed() 19 | .setColor(es.wrongcolor) 20 | .setFooter(client.getFooter(es)) 21 | .setTitle(client.la[ls].common.disabled.title) 22 | .setDescription(require(`${process.cwd()}/handlers/functions`).handlemsg(client.la[ls].common.disabled.description, { 23 | prefix: prefix 24 | })) 25 | return message.reply({ 26 | embeds: [x] 27 | }); 28 | } 29 | if (!message.channel.nsfw) return message.reply(eval(client.la[ls]["cmds"]["nsfw"]["anal"]["variable2"])) 30 | 31 | let owo = (await neko.nsfw.trap()); 32 | message.reply({ 33 | content: `${owo.url}` 34 | }); 35 | } 36 | }; -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/databases/antinuke/placeholder.txt: -------------------------------------------------------------------------------- 1 | in this folder a database will be created, the bot got coded by Tomato#6966 (github.com/Tomato6966) https://tomato6966.xyz https://milrato.dev https://discord.gg/milrato -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/databases/apply/enmap.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/databases/apply/enmap.sqlite -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/databases/apply/enmap.sqlite-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/databases/apply/enmap.sqlite-wal -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/databases/apply/placeholder.txt: -------------------------------------------------------------------------------- 1 | in this folder a database will be created, the bot got coded by Tomato#6966 (github.com/Tomato6966) https://tomato6966.xyz https://milrato.dev https://discord.gg/milrato -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/databases/apply2/enmap.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/databases/apply2/enmap.sqlite -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/databases/apply2/placeholder.txt: -------------------------------------------------------------------------------- 1 | in this folder a database will be created, the bot got coded by Tomato#6966 (github.com/Tomato6966) https://tomato6966.xyz https://milrato.dev https://discord.gg/milrato -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/databases/apply3/enmap.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/databases/apply3/enmap.sqlite -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/databases/apply3/placeholder.txt: -------------------------------------------------------------------------------- 1 | in this folder a database will be created, the bot got coded by Tomato#6966 (github.com/Tomato6966) https://tomato6966.xyz https://milrato.dev https://discord.gg/milrato -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/databases/apply4/enmap.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/databases/apply4/enmap.sqlite -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/databases/apply4/placeholder.txt: -------------------------------------------------------------------------------- 1 | in this folder a database will be created, the bot got coded by Tomato#6966 (github.com/Tomato6966) https://tomato6966.xyz https://milrato.dev https://discord.gg/milrato -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/databases/apply5/enmap.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/databases/apply5/enmap.sqlite -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/databases/apply5/placeholder.txt: -------------------------------------------------------------------------------- 1 | in this folder a database will be created, the bot got coded by Tomato#6966 (github.com/Tomato6966) https://tomato6966.xyz https://milrato.dev https://discord.gg/milrato -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/databases/blacklist/placeholder.txt: -------------------------------------------------------------------------------- 1 | in this folder a database will be created, the bot got coded by Tomato#6966 (github.com/Tomato6966) https://tomato6966.xyz https://milrato.dev https://discord.gg/milrato -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/databases/customcommands/placeholder.txt: -------------------------------------------------------------------------------- 1 | in this folder a database will be created, the bot got coded by Tomato#6966 (github.com/Tomato6966) https://tomato6966.xyz https://milrato.dev https://discord.gg/milrato -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/databases/economy/placeholder.txt: -------------------------------------------------------------------------------- 1 | in this folder a database will be created, the bot got coded by Tomato#6966 (github.com/Tomato6966) https://tomato6966.xyz https://milrato.dev https://discord.gg/milrato -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/databases/jointocreatemap/placeholder.txt: -------------------------------------------------------------------------------- 1 | in this folder a database will be created, the bot got coded by Tomato#6966 (github.com/Tomato6966) https://tomato6966.xyz https://milrato.dev https://discord.gg/milrato -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/databases/jtc1/placeholder.txt: -------------------------------------------------------------------------------- 1 | in this folder a database will be created, the bot got coded by Tomato#6966 (github.com/Tomato6966) https://tomato6966.xyz https://milrato.dev https://discord.gg/milrato -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/databases/jtc2/placeholder.txt: -------------------------------------------------------------------------------- 1 | in this folder a database will be created, the bot got coded by Tomato#6966 (github.com/Tomato6966) https://tomato6966.xyz https://milrato.dev https://discord.gg/milrato -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/databases/jtc3/placeholder.txt: -------------------------------------------------------------------------------- 1 | in this folder a database will be created, the bot got coded by Tomato#6966 (github.com/Tomato6966) https://tomato6966.xyz https://milrato.dev https://discord.gg/milrato -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/databases/keyword/placeholder.txt: -------------------------------------------------------------------------------- 1 | in this folder a database will be created, the bot got coded by Tomato#6966 (github.com/Tomato6966) https://tomato6966.xyz https://milrato.dev https://discord.gg/milrato -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/databases/menuticket/enmap.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/databases/menuticket/enmap.sqlite -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/databases/menuticket/placeholder.txt: -------------------------------------------------------------------------------- 1 | in this folder a database will be created, the bot got coded by Tomato#6966 (github.com/Tomato6966) https://tomato6966.xyz https://milrato.dev https://discord.gg/milrato -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/databases/otherapplies/enmap.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/databases/otherapplies/enmap.sqlite -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/databases/otherapplies/placeholder.txt: -------------------------------------------------------------------------------- 1 | in this folder a database will be created, the bot got coded by Tomato#6966 (github.com/Tomato6966) https://tomato6966.xyz https://milrato.dev https://discord.gg/milrato -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/databases/placeholder.txt: -------------------------------------------------------------------------------- 1 | in this folder a database will be created, the bot got coded by Tomato#6966 (github.com/Tomato6966) https://tomato6966.xyz https://milrato.dev https://discord.gg/milrato -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/databases/premium/placeholder.txt: -------------------------------------------------------------------------------- 1 | in this folder a database will be created, the bot got coded by Tomato#6966 (github.com/Tomato6966) https://tomato6966.xyz https://milrato.dev https://discord.gg/milrato -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/databases/queuesaves/enmap.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakshL/Shop-Managerx/69d44c8fa465252bfbe55fe04e2031c3827b393a/servicebots/SYSTEMBOTS/template/databases/queuesaves/enmap.sqlite -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/databases/queuesaves/placeholder.txt: -------------------------------------------------------------------------------- 1 | in this folder a database will be created, the bot got coded by Tomato#6966 (github.com/Tomato6966) https://tomato6966.xyz https://milrato.dev https://discord.gg/milrato -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/databases/ranking/placeholder.txt: -------------------------------------------------------------------------------- 1 | in this folder a database will be created, the bot got coded by Tomato#6966 (github.com/Tomato6966) https://tomato6966.xyz https://milrato.dev https://discord.gg/milrato -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/databases/reactionrole/placeholder.txt: -------------------------------------------------------------------------------- 1 | in this folder a database will be created, the bot got coded by Tomato#6966 (github.com/Tomato6966) https://tomato6966.xyz https://milrato.dev https://discord.gg/milrato -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/databases/roster/placeholder.txt: -------------------------------------------------------------------------------- 1 | in this folder a database will be created, the bot got coded by Tomato#6966 (github.com/Tomato6966) https://tomato6966.xyz https://milrato.dev https://discord.gg/milrato -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/databases/settings/placeholder.txt: -------------------------------------------------------------------------------- 1 | in this folder a database will be created, the bot got coded by Tomato#6966 (github.com/Tomato6966) https://tomato6966.xyz https://milrato.dev https://discord.gg/milrato -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/databases/setups/placeholder.txt: -------------------------------------------------------------------------------- 1 | in this folder a database will be created, the bot got coded by Tomato#6966 (github.com/Tomato6966) https://tomato6966.xyz https://milrato.dev https://discord.gg/milrato -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/databases/social_log/placeholder.txt: -------------------------------------------------------------------------------- 1 | in this folder a database will be created, the bot got coded by Tomato#6966 (github.com/Tomato6966) https://tomato6966.xyz https://milrato.dev https://discord.gg/milrato -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/databases/stats/placeholder.txt: -------------------------------------------------------------------------------- 1 | in this folder a database will be created, the bot got coded by Tomato#6966 (github.com/Tomato6966) https://tomato6966.xyz https://milrato.dev https://discord.gg/milrato -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/databases/warns/placeholder.txt: -------------------------------------------------------------------------------- 1 | in this folder a database will be created, the bot got coded by Tomato#6966 (github.com/Tomato6966) https://tomato6966.xyz https://milrato.dev https://discord.gg/milrato -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/events/client/debug.js: -------------------------------------------------------------------------------- 1 | //here the event starts 2 | module.exports = (client, info) => { 3 | console.log(String(info).grey); 4 | } 5 | /** 6 | * @INFO 7 | * Bot Coded by Tomato#6966 | https://discord.gg/milrato 8 | * @INFO 9 | * Work for Milrato Development | https://milrato.eu 10 | * @INFO 11 | * Please mention him / Milrato Development, when using this Code! 12 | * @INFO 13 | */ 14 | -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/events/client/disconnect.js: -------------------------------------------------------------------------------- 1 | //here the event starts 2 | module.exports = client => { 3 | console.log(`You have been disconnected at ${new Date()}.`.dim) 4 | } 5 | /** 6 | * @INFO 7 | * Bot Coded by Tomato#6966 | https://discord.gg/milrato 8 | * @INFO 9 | * Work for Milrato Development | https://milrato.eu 10 | * @INFO 11 | * Please mention him / Milrato Development, when using this Code! 12 | * @INFO 13 | */ 14 | 15 | -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/events/client/error.js: -------------------------------------------------------------------------------- 1 | //here the event starts 2 | module.exports = (client, error) => { 3 | console.log(String(error).red.dim); 4 | } 5 | /** 6 | * @INFO 7 | * Bot Coded by Tomato#6966 | https://discord.gg/milrato 8 | * @INFO 9 | * Work for Milrato Development | https://milrato.eu 10 | * @INFO 11 | * Please mention him / Milrato Development, when using this Code! 12 | * @INFO 13 | */ 14 | -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/events/client/rateLimit.js: -------------------------------------------------------------------------------- 1 | //here the event starts 2 | module.exports = (client, rateLimitData) => { 3 | console.log(JSON.stringify(rateLimitData).grey) 4 | } 5 | /** 6 | * @INFO 7 | * Bot Coded by Tomato#6966 | https://discord.gg/milrato 8 | * @INFO 9 | * Work for Milrato Development | https://milrato.eu 10 | * @INFO 11 | * Please mention him / Milrato Development, when using this Code! 12 | * @INFO 13 | */ 14 | -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/events/client/reconnecting.js: -------------------------------------------------------------------------------- 1 | //here the event starts 2 | module.exports = client => { 3 | console.log(`Reconnceting at ${new Date()}.`.bgYellow.black) 4 | } 5 | /** 6 | * @INFO 7 | * Bot Coded by Tomato#6966 | https://discord.gg/milrato 8 | * @INFO 9 | * Work for Milrato Development | https://milrato.eu 10 | * @INFO 11 | * Please mention him / Milrato Development, when using this Code! 12 | * @INFO 13 | */ 14 | -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/events/client/shardDisconnect.js: -------------------------------------------------------------------------------- 1 | //here the event starts 2 | module.exports = (client, event, id) => { 3 | console.log(` || <==> || [${String(new Date).split(" ", 5).join(" ")}] || <==> || Shard #${id} Disconnected || <==> ||`) 4 | } 5 | /** 6 | * @INFO 7 | * Bot Coded by Tomato#6966 | https://discord.gg/milrato 8 | * @INFO 9 | * Work for Milrato Development | https://milrato.eu 10 | * @INFO 11 | * Please mention him / Milrato Development, when using this Code! 12 | * @INFO 13 | */ 14 | -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/events/client/shardError.js: -------------------------------------------------------------------------------- 1 | //here the event starts 2 | module.exports = (client, error, id) => { 3 | console.log(` || <==> || [${String(new Date).split(" ", 5).join(" ")}] || <==> || Shard #${id} Errored || <==> ||`) 4 | } 5 | /** 6 | * @INFO 7 | * Bot Coded by Tomato#6966 | https://discord.gg/milrato 8 | * @INFO 9 | * Work for Milrato Development | https://milrato.eu 10 | * @INFO 11 | * Please mention him / Milrato Development, when using this Code! 12 | * @INFO 13 | */ 14 | -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/events/client/shardReady.js: -------------------------------------------------------------------------------- 1 | //here the event starts 2 | module.exports = (client, id) => { 3 | console.log(` || <==> || [${String(new Date).split(" ", 5).join(" ")}] || <==> || Shard #${id} Ready || <==> ||`) 4 | } 5 | /** 6 | * @INFO 7 | * Bot Coded by Tomato#6966 | https://discord.gg/milrato 8 | * @INFO 9 | * Work for Milrato Development | https://milrato.eu 10 | * @INFO 11 | * Please mention him / Milrato Development, when using this Code! 12 | * @INFO 13 | */ 14 | -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/events/client/shardReconnecting.js: -------------------------------------------------------------------------------- 1 | //here the event starts 2 | module.exports = (client, id) => { 3 | console.log(` || <==> || [${String(new Date).split(" ", 5).join(" ")}] || <==> || Shard #${id} Reconnecting || <==> ||`) 4 | } 5 | /** 6 | * @INFO 7 | * Bot Coded by Tomato#6966 | https://discord.gg/milrato 8 | * @INFO 9 | * Work for Milrato Development | https://milrato.eu 10 | * @INFO 11 | * Please mention him / Milrato Development, when using this Code! 12 | * @INFO 13 | */ 14 | -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/events/client/shardResume.js: -------------------------------------------------------------------------------- 1 | //here the event starts 2 | module.exports = (client, id, replayedEvents) => { 3 | console.log(` || <==> || [${String(new Date).split(" ", 5).join(" ")}] || <==> || Shard #${id} Resumed || <==> ||`) 4 | } 5 | /** 6 | * @INFO 7 | * Bot Coded by Tomato#6966 | https://discord.gg/milrato 8 | * @INFO 9 | * Work for Milrato Development | https://milrato.eu 10 | * @INFO 11 | * Please mention him / Milrato Development, when using this Code! 12 | * @INFO 13 | */ 14 | -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/events/client/warn.js: -------------------------------------------------------------------------------- 1 | //here the event starts 2 | module.exports = (client, error) => { 3 | console.log(String(error).yellow.dim); 4 | } 5 | /** 6 | * @INFO 7 | * Bot Coded by Tomato#6966 | https://discord.gg/milrato 8 | * @INFO 9 | * Work for Milrato Development | https://milrato.eu 10 | * @INFO 11 | * Please mention him / Milrato Development, when using this Code! 12 | * @INFO 13 | */ 14 | -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/events/guild/message.js: -------------------------------------------------------------------------------- 1 | //MOVED TO: messageCreate.js -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/events/guild/threadCreate.js: -------------------------------------------------------------------------------- 1 | //The Module 2 | module.exports = async (client, thread) => { 3 | try{ 4 | if(thread.joinable && !thread.joined){ 5 | await thread.join(); 6 | } 7 | }catch (e){ 8 | console.log(String(e).grey) 9 | } 10 | } 11 | /** 12 | * @INFO 13 | * Bot Coded by Tomato#6966 | https://discord.gg/milrato 14 | * @INFO 15 | * Work for Milrato Development | https://milrato.eu 16 | * @INFO 17 | * Please mention him / Milrato Development, when using this Code! 18 | * @INFO 19 | */ 20 | -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/example.env: -------------------------------------------------------------------------------- 1 | token= 2 | 3 | memer_api= 4 | 5 | clientSecret= 6 | clientID= 7 | 8 | consumer_key= 9 | consumer_secret= 10 | access_token= 11 | access_token_secret= 12 | 13 | fnbr= 14 | fortnitetracker= 15 | 16 | twitch_clientID= 17 | twitch_secret= 18 | -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/handlers/NumberCounter.js: -------------------------------------------------------------------------------- 1 | /** 2 | * MOVED TO .counter.js 3 | */ -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/handlers/erelahandler.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | module.exports = (client) => { 4 | //Create the client 5 | require("./erela_events/creation")(client) 6 | //in there we are requireing the node_events + client and normal events 7 | }; 8 | 9 | /** 10 | * @INFO 11 | * Bot Coded by Tomato#6966 | https://github?.com/Tomato6966/discord-js-lavalink-Music-Bot-erela-js 12 | * @INFO 13 | * Work for Milrato Development | https://milrato.eu 14 | * @INFO 15 | * Please mention Him / Milrato Development, when using this Code! 16 | * @INFO 17 | */ 18 | -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/handlers/position.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Moved to ./functions.js 3 | */ -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/social_log/streamconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "twitch_clientID": "", 3 | "twitch_secret": "", 4 | "authToken": "" 5 | } -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/social_log/twitter.json: -------------------------------------------------------------------------------- 1 | { 2 | "consumer_key": "", 3 | "consumer_secret": "", 4 | "access_token": "", 5 | "access_token_secret": "", 6 | "timeout_ms": 30000, 7 | "strictSSL": true 8 | } 9 | -------------------------------------------------------------------------------- /servicebots/SYSTEMBOTS/template/social_log/youtubelog/placeholder.txt: -------------------------------------------------------------------------------- 1 | in here a database will be created --------------------------------------------------------------------------------