Mineuniverse
Log in Register
Plugins

UUIDSolver API

An assistant for migrating to UUID or to online-mode.
by _ForgeUser11741787
Download Claim this project
635 downloads
0 likes
Updated Jun 30, 2026
0 hypes
Admin Tools Informational

UUIDSolver API

Features

  • Find a player by UUID
  • Find the online UUID of a player (for online-mode servers)
  • Find the offline UUID of a player (for offline-mode servers)

Command

The main command is: /uuidsolver

The subcommands are:

  • "player" to find a player from an UUID
  • "offlineuuid" to find an offline UUID from a player
  • "onlineuuid" to find an online UUID from a player

API

public OfflinePlayer getPlayer(String uuid){
	return Bukkit.getOfflinePlayer(UUID.fromString(uuid));
}
	
public UUID getOfflineUUID(String player){
	return UUID.nameUUIDFromBytes(player.getBytes());
}
	
public UUID getOnlineUUID(String player){
	UUID uuid = null;
	for(OfflinePlayer offlineplayer:Bukkit.getOfflinePlayers()){
		if(offlineplayer.getName() == player){
			uuid = offlineplayer.getUniqueId();
		}
	} for(Player onlineplayer:Bukkit.getOnlinePlayers()){
		if(onlineplayer.getName() == player){
			uuid = onlineplayer.getUniqueId();
		}
	} return uuid;
}
UUIDSolver v0.1
MC 1.8.1
Release 2014-12-20 Get

More from _ForgeUser11741787

CommandLimit
577
FlyRestrictions
551
ShipLocking
2,634
SimpleBack
2,012
SuperHub
18,333

You Might Also Like

AdBolt Advertising Network
Make money from your Minecraft server by running ads!
9,992
Mineload
Mineload
9,978
BeastTP
BeastTP v1.0 - Teleportation Made Easy! -[Permissions][1317]
9,966
RegionManager
generate regions with just one command!
9,950
TimeKeeper
Keep the Server-Playtime per Day
9,948
SimpleAdmin
simple way to ban/kick unwanted players from your server
9,945