Advertisement
Guest User

Untitled

a guest
Mar 19th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. module.exports = { //tells nodejs to put this into the var when using `require()`
  2.   main: function (message, client, connection, universalUserID, discordEmojiMessageContent, settings) { //this is when running, when you use `help.main`^^
  3.     //Main Modules - Just leave these, custom modules
  4.     var botUse = require("./Main/botUse")
  5.     var badgeCheck = require("./Main/badgeCheck")
  6.     var send = require("./Main/send")
  7.  
  8.     //Modules - Leave these too, libs
  9.     const Discord = require("discord.js")
  10.     var colors = require("colors")
  11.  
  12.     if (message.content === 'nsfw') {
  13.         if (message.channel.nsfw === true) {
  14.             // PLACEHOLDER FOR WEEB.SH SHIT
  15.    }
  16.   }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement