├── .env.example ├── LICENSE ├── README.md ├── commands ├── Admin │ ├── addcommand.js │ ├── addrole.js │ ├── backup.js │ ├── ban.js │ ├── clear.js │ ├── ctopic.js │ ├── deletecommand.js │ ├── disablewelcome.js │ ├── forceban.js │ ├── kick.js │ ├── lockchannel.js │ ├── mute.js │ ├── setwelcome.js │ ├── slowmode.js │ ├── unban.js │ ├── unlockchannel.js │ ├── unmute.js │ ├── unwarn.js │ ├── warn.js │ └── warnings.js ├── Economy │ ├── balance.js │ ├── buy.js │ ├── daily.js │ ├── deposit.js │ ├── inventory.js │ ├── leaderboard.js │ ├── pay.js │ ├── rob.js │ ├── store.js │ ├── withdraw.js │ └── work.js ├── Fun │ ├── 8ball.js │ ├── advice.js │ ├── ascii.js │ ├── changemymind.js │ ├── compliment.js │ ├── fml.js │ ├── joke.js │ ├── kiss.js │ ├── meme.js │ ├── shit.js │ ├── slap.js │ ├── triggered.js │ └── wouldyourather.js ├── Images │ └── kiss.js ├── Levels │ └── rank.js ├── Memes │ ├── affect.js │ ├── beautiful.js │ ├── changemymind.js │ ├── facepalm.js │ ├── shit.js │ ├── slap.js │ └── triggered.js ├── Music │ ├── autoplay.js │ ├── filter.js │ ├── join.js │ ├── leave.js │ ├── loop.js │ ├── pause.js │ ├── play.js │ ├── queue.js │ ├── resume.js │ ├── seek.js │ ├── skip.js │ ├── stop.js │ └── volume.js └── Utility │ ├── avatar.js │ ├── bmi.js │ ├── botstats.js │ ├── calculator.js │ ├── channelinfo.js │ ├── config.js │ ├── help.js │ ├── igbot.js │ ├── invitations.js │ ├── invites.js │ ├── morse.js │ ├── ping.js │ ├── serverinfo.js │ ├── translate.js │ ├── userinfo.js │ └── weather.js ├── config ├── config.json └── emojis.json ├── data ├── 8ball.json └── wouldyourather.json ├── docs ├── .nojekyll ├── README.md ├── _coverpage.md ├── _navbar.md ├── _sidebar.md ├── about │ └── index.md ├── commands.md ├── contact │ └── index.md ├── faq.md ├── favicon.ico ├── images │ ├── 1588697654399.png │ ├── Bot Logo.png │ ├── forwebsite.png │ └── game-controller.png ├── index.html ├── quickstart.md ├── style.css └── tutorials │ ├── index.md │ ├── installation │ └── index.md │ └── mongodb │ ├── connect.png │ ├── index.md │ └── sidebar.png ├── events & functions └── welcome.js ├── events&functions ├── welcome.js └── xp.js ├── index.js ├── models ├── Guild.model.js └── warnSchema.js └── package.json /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/.env.example -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/README.md -------------------------------------------------------------------------------- /commands/Admin/addcommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Admin/addcommand.js -------------------------------------------------------------------------------- /commands/Admin/addrole.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Admin/addrole.js -------------------------------------------------------------------------------- /commands/Admin/backup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Admin/backup.js -------------------------------------------------------------------------------- /commands/Admin/ban.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Admin/ban.js -------------------------------------------------------------------------------- /commands/Admin/clear.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Admin/clear.js -------------------------------------------------------------------------------- /commands/Admin/ctopic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Admin/ctopic.js -------------------------------------------------------------------------------- /commands/Admin/deletecommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Admin/deletecommand.js -------------------------------------------------------------------------------- /commands/Admin/disablewelcome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Admin/disablewelcome.js -------------------------------------------------------------------------------- /commands/Admin/forceban.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Admin/forceban.js -------------------------------------------------------------------------------- /commands/Admin/kick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Admin/kick.js -------------------------------------------------------------------------------- /commands/Admin/lockchannel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Admin/lockchannel.js -------------------------------------------------------------------------------- /commands/Admin/mute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Admin/mute.js -------------------------------------------------------------------------------- /commands/Admin/setwelcome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Admin/setwelcome.js -------------------------------------------------------------------------------- /commands/Admin/slowmode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Admin/slowmode.js -------------------------------------------------------------------------------- /commands/Admin/unban.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Admin/unban.js -------------------------------------------------------------------------------- /commands/Admin/unlockchannel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Admin/unlockchannel.js -------------------------------------------------------------------------------- /commands/Admin/unmute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Admin/unmute.js -------------------------------------------------------------------------------- /commands/Admin/unwarn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Admin/unwarn.js -------------------------------------------------------------------------------- /commands/Admin/warn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Admin/warn.js -------------------------------------------------------------------------------- /commands/Admin/warnings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Admin/warnings.js -------------------------------------------------------------------------------- /commands/Economy/balance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Economy/balance.js -------------------------------------------------------------------------------- /commands/Economy/buy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Economy/buy.js -------------------------------------------------------------------------------- /commands/Economy/daily.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Economy/daily.js -------------------------------------------------------------------------------- /commands/Economy/deposit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Economy/deposit.js -------------------------------------------------------------------------------- /commands/Economy/inventory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Economy/inventory.js -------------------------------------------------------------------------------- /commands/Economy/leaderboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Economy/leaderboard.js -------------------------------------------------------------------------------- /commands/Economy/pay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Economy/pay.js -------------------------------------------------------------------------------- /commands/Economy/rob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Economy/rob.js -------------------------------------------------------------------------------- /commands/Economy/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Economy/store.js -------------------------------------------------------------------------------- /commands/Economy/withdraw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Economy/withdraw.js -------------------------------------------------------------------------------- /commands/Economy/work.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Economy/work.js -------------------------------------------------------------------------------- /commands/Fun/8ball.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Fun/8ball.js -------------------------------------------------------------------------------- /commands/Fun/advice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Fun/advice.js -------------------------------------------------------------------------------- /commands/Fun/ascii.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Fun/ascii.js -------------------------------------------------------------------------------- /commands/Fun/changemymind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Fun/changemymind.js -------------------------------------------------------------------------------- /commands/Fun/compliment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Fun/compliment.js -------------------------------------------------------------------------------- /commands/Fun/fml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Fun/fml.js -------------------------------------------------------------------------------- /commands/Fun/joke.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Fun/joke.js -------------------------------------------------------------------------------- /commands/Fun/kiss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Fun/kiss.js -------------------------------------------------------------------------------- /commands/Fun/meme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Fun/meme.js -------------------------------------------------------------------------------- /commands/Fun/shit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Fun/shit.js -------------------------------------------------------------------------------- /commands/Fun/slap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Fun/slap.js -------------------------------------------------------------------------------- /commands/Fun/triggered.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Fun/triggered.js -------------------------------------------------------------------------------- /commands/Fun/wouldyourather.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Fun/wouldyourather.js -------------------------------------------------------------------------------- /commands/Images/kiss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Images/kiss.js -------------------------------------------------------------------------------- /commands/Levels/rank.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Levels/rank.js -------------------------------------------------------------------------------- /commands/Memes/affect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Memes/affect.js -------------------------------------------------------------------------------- /commands/Memes/beautiful.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Memes/beautiful.js -------------------------------------------------------------------------------- /commands/Memes/changemymind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Memes/changemymind.js -------------------------------------------------------------------------------- /commands/Memes/facepalm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Memes/facepalm.js -------------------------------------------------------------------------------- /commands/Memes/shit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Memes/shit.js -------------------------------------------------------------------------------- /commands/Memes/slap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Memes/slap.js -------------------------------------------------------------------------------- /commands/Memes/triggered.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Memes/triggered.js -------------------------------------------------------------------------------- /commands/Music/autoplay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Music/autoplay.js -------------------------------------------------------------------------------- /commands/Music/filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Music/filter.js -------------------------------------------------------------------------------- /commands/Music/join.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Music/join.js -------------------------------------------------------------------------------- /commands/Music/leave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Music/leave.js -------------------------------------------------------------------------------- /commands/Music/loop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Music/loop.js -------------------------------------------------------------------------------- /commands/Music/pause.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Music/pause.js -------------------------------------------------------------------------------- /commands/Music/play.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Music/play.js -------------------------------------------------------------------------------- /commands/Music/queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Music/queue.js -------------------------------------------------------------------------------- /commands/Music/resume.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Music/resume.js -------------------------------------------------------------------------------- /commands/Music/seek.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Music/seek.js -------------------------------------------------------------------------------- /commands/Music/skip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Music/skip.js -------------------------------------------------------------------------------- /commands/Music/stop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Music/stop.js -------------------------------------------------------------------------------- /commands/Music/volume.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Music/volume.js -------------------------------------------------------------------------------- /commands/Utility/avatar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Utility/avatar.js -------------------------------------------------------------------------------- /commands/Utility/bmi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Utility/bmi.js -------------------------------------------------------------------------------- /commands/Utility/botstats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Utility/botstats.js -------------------------------------------------------------------------------- /commands/Utility/calculator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Utility/calculator.js -------------------------------------------------------------------------------- /commands/Utility/channelinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Utility/channelinfo.js -------------------------------------------------------------------------------- /commands/Utility/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Utility/config.js -------------------------------------------------------------------------------- /commands/Utility/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Utility/help.js -------------------------------------------------------------------------------- /commands/Utility/igbot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Utility/igbot.js -------------------------------------------------------------------------------- /commands/Utility/invitations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Utility/invitations.js -------------------------------------------------------------------------------- /commands/Utility/invites.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Utility/invites.js -------------------------------------------------------------------------------- /commands/Utility/morse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Utility/morse.js -------------------------------------------------------------------------------- /commands/Utility/ping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Utility/ping.js -------------------------------------------------------------------------------- /commands/Utility/serverinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Utility/serverinfo.js -------------------------------------------------------------------------------- /commands/Utility/translate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Utility/translate.js -------------------------------------------------------------------------------- /commands/Utility/userinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Utility/userinfo.js -------------------------------------------------------------------------------- /commands/Utility/weather.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/commands/Utility/weather.js -------------------------------------------------------------------------------- /config/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/config/config.json -------------------------------------------------------------------------------- /config/emojis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/config/emojis.json -------------------------------------------------------------------------------- /data/8ball.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/data/8ball.json -------------------------------------------------------------------------------- /data/wouldyourather.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/data/wouldyourather.json -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_coverpage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/docs/_coverpage.md -------------------------------------------------------------------------------- /docs/_navbar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/docs/_navbar.md -------------------------------------------------------------------------------- /docs/_sidebar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/docs/_sidebar.md -------------------------------------------------------------------------------- /docs/about/index.md: -------------------------------------------------------------------------------- 1 | # About This Bot 2 | -------------------------------------------------------------------------------- /docs/commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/docs/commands.md -------------------------------------------------------------------------------- /docs/contact/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/docs/contact/index.md -------------------------------------------------------------------------------- /docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/docs/faq.md -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/images/1588697654399.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/docs/images/1588697654399.png -------------------------------------------------------------------------------- /docs/images/Bot Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/docs/images/Bot Logo.png -------------------------------------------------------------------------------- /docs/images/forwebsite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/docs/images/forwebsite.png -------------------------------------------------------------------------------- /docs/images/game-controller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/docs/images/game-controller.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/quickstart.md: -------------------------------------------------------------------------------- 1 | # Quick start 2 | 3 | > An awesome project's another page. 4 | -------------------------------------------------------------------------------- /docs/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/docs/style.css -------------------------------------------------------------------------------- /docs/tutorials/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/docs/tutorials/index.md -------------------------------------------------------------------------------- /docs/tutorials/installation/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/docs/tutorials/installation/index.md -------------------------------------------------------------------------------- /docs/tutorials/mongodb/connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/docs/tutorials/mongodb/connect.png -------------------------------------------------------------------------------- /docs/tutorials/mongodb/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/docs/tutorials/mongodb/index.md -------------------------------------------------------------------------------- /docs/tutorials/mongodb/sidebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/docs/tutorials/mongodb/sidebar.png -------------------------------------------------------------------------------- /events & functions/welcome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/events & functions/welcome.js -------------------------------------------------------------------------------- /events&functions/welcome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/events&functions/welcome.js -------------------------------------------------------------------------------- /events&functions/xp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/events&functions/xp.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/index.js -------------------------------------------------------------------------------- /models/Guild.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/models/Guild.model.js -------------------------------------------------------------------------------- /models/warnSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/models/warnSchema.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRohan/IGBot/HEAD/package.json --------------------------------------------------------------------------------