Getting info on a key
Returns info you might need about a key
const psu = require("psuobf");//v1.1.1 ^
psu.checkkey("KEY").then(items => {
console.log(items.key) //Returns the key used prettymuch useless
console.log(items.reqsleft) //Returns how many requests the key has for today
console.log(items.allowed) //Return how many requets the key is allowed per day usually 50
console.log(item.disabled) //Returns if the key is disabled/not valid
console.log(item.datemade) //Returns the time the key was made relative to january 1st 1970
console.log(item.id) //Returns the keys id currently useless
console.log(item.uid) //Returns the keys user specific id currently useless
console.log(item.todaysreqs) //Returns the requests already sent today
console.log(item.totalreqs) //Returns the ammount of requests ever sent with this key currently semi-broken
})
Last updated
Was this helpful?