2.0.1 • Published 5 years ago

mycenter_bots v2.0.1

Weekly downloads
1
License
ISC
Repository
-
Last release
5 years ago

myCenter V4 Bots

To get started go to our service and create a bot: https://mycenterrblx.net/register Once you have a bot, go ahead and download your loader, this will give you the loader ID, which is required for this package.

Download us:

npm i mycenter_bots

Your bot id will be located in this:

require(3422736411)("botIdHere")

Now, to use our package you will require it by doing

const myCenter = require("mycenter_bots")("loaderIdHere");

You can do many thing with this, such as shouting, managing join requests, and ranking.

Examples:

myCenter.GetGroupInfo(function(err, data){
    if (err){
        console.log(err)
    }else{
        console.log(data)
    }
})
myCenter.shout("myCenter | Our Node.JS bot package is coming soon!",function(err, data){
    if (err){
        console.log(err)
    }else{
        console.log(data)
    }
})
myCenter.RankUser(1141027083,25, function(err, success){
    if (err){
        console.log(err)
    }else{
        console.log(success)
    }
})
myCenter.DeclineJoinRequest(297470909, function(err, success){
    if (err){
        console.log(err)
    }else{
        console.log(success)
    }
})

myCenter.ExileUser(297470909, function(err, success){
    if (err){
        console.log(err)
    }else{
        console.log(success)
    }
})

#For support join our discord: https://discord.gg/UUYQgAt