1.0.5 • Published 3 years ago

bloxget v1.0.5

Weekly downloads
-
License
ISC
Repository
github
Last release
3 years ago

Welcome to BloxGet

you can with bloxget get all data of any thing in roblox game

How To Install

write in cmds

npm i bloxget

1.0 Version

you can get all data of any group in roblox with 1.0 version and get all data of any user in roblox with 1.0 version

What's News in 1.0

blox.group.getowner(/* groupid */ 1, /* call back */ (data) => {
   console.log(data)
}) // return a json with data of group owner
blox.group.groupdata(/* groupid */ 1, /* call back */ (data) => {
   console.log(data)
}) // return group data
blox.group.namehistory(/* groupid */ 1, /* call back */ (data) => {
   console.log(data)
}) // return name history of group

Exampls

to get username history with username not id

let userid = 1; // default id
const username = '0Bo_Dy' // username of user
blox.user.getid(username /*username to get id of it*/, (suc /* response data */, err /* if error in data */) => {
    if(err) return console.log(err); // if error return console.log err
    userid = suc.id // recharging the id
    blox.user.usernamehistory(userid /*user id*/, 0, (datajson) => {
        console.log(datajson) // your code
    })    
})
1.0.5

3 years ago

1.0.3

3 years ago