-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
there r too many nick on my overlay!!!even me!!!! #43
Comments
The Mojang API current has decreased their API rate limits to something extremely low and so this occurs, we rely on the Mojang API to provide UUIDs to us, as a result this is what happens. We can't do much about this as all UUIDs come from the Mojang API |
Mojang will keep imposing strict rate limits because me and a few other people are making millions of API requests per day to the Mojang API to make a full archive of more than 56 million UUIDs, player names, name change history, and skins for historical purposes. You should distinguish players between UUID versions rather than using the Mojang API and hitting rate limits. There is no documentation since I created this project for myself which is used for laby.net Coverage as an example but I have made my code fully open-source for other people to take a look at: https://github.com/ItzLevvie/uuids/blob/4f0d6ca00c7a64e28c2b112e1c1bdedae49222a5/launch.js More specifically, this code below: [...]
// Minecraft puts all players under UUID version 4.
if (uuids[14] === "4") {
Chat.log("§a" + players + " §fwith §a" + uuids);
FS.open("validPlayers.txt").append(players + "\r\n");
FS.open("validUUIDs.txt").append(uuids + "\r\n");
FS.open("DEBUG.txt").append(players + " (player) with " + uuids + " (UUID version 4)" + "\r\n");
}
// Servers like Hypixel puts all NPCs under UUID version 2.
if (uuids[14] === "2") {
//Chat.log("§4" + players + " §fwith §4" + uuids);
FS.open("invalidPlayers.txt").append(players + "\r\n");
FS.open("invalidUUIDs.txt").append(uuids + "\r\n");
FS.open("DEBUG.txt").append(players + " (NPC) with " + uuids + " (UUID version 2)" + "\r\n");
}
// Servers like Hypixel puts all nicked players under UUID version 1.
if (uuids[14] === "1") {
Chat.log("§4" + players + " §fwith §4" + uuids);
FS.open("invalidPlayers.txt").append(players + "\r\n");
FS.open("invalidUUIDs.txt").append(uuids + "\r\n");
FS.open("DEBUG.txt").append(players + " (nicked player) with " + uuids + " (UUID version 1)" + "\r\n");
}
[...] |
oh that's so sick @ItzLevvie thanks for pointing this out!! Didn't even know that laby had a contribution page |
in hypixel im a vip+ . when i use every overlay there r too many nick on it , but i think its not normall because i see im nicked! to solve this problem i restart the computer but it also doesnt work. i reinstall the lunar and overlay for many times .the result is terrible.it also doesnt work.i try many ways but it doesnt work . please help me !!!what can i do?write to me soon pls. my engish is not good.please forgive me.
The text was updated successfully, but these errors were encountered: