This plugin provides a few commands to view public mojang profile data: names history, past owners of the name, profile uuid.
- Tested Minecraft Versions:
- 1.7
- 1.8
- 1.9
- 1.10
All task are asynchronous (no lags).
Result of using: /history Mumbo
Result of using: /profile Rocknest
Result of using: /owner Dr_Polin 30
Commands
- /history <username> (Permission names.history)
- Shows which names a player used before.
- /profile <username> (Permission names.profile)
- Shows the player's profile.
- /owner <username> <days ago> (Permission names.owner)
- Shows the owner of the given name at given number of days ago.
- /nameshistory <option> [value] (Permission names.admin)
- Displays help menu & controls settings.
Config
- enable_seconds (true/false) - When true, seconds will be displayed (default FALSE).
- enable_timezone (true/false) - When true, timezone will be displayed (default TRUE).
- date_format (1-3) - Controls date format. Available formats:
- 2015-03-32 11:25:61 UTC
- 32.03.2015 11:25:61 UTC
- 32 March 2015 11:25:61 UTC
API
Out of date! Many methods were changed.
Plugin provides simple async API for developers.
You can retrieve a MojangProfile of a player like that:
You can retrieve a list of which names a player used before like that:Code (Text):public void exampleProfile(String name) {
NamesHistoryAPI.getProfile(name, new Callback<MojangProfile>() {
@Override
public void done(MojangProfile response, Exception error) {
if (error != null) {
// We have an error! Details: error.getMessage();
return;
}
// Anything you want
}
});
}
Code (Text):public void exampleHistory(UUID uuid) {
NamesHistoryAPI.getNamesHistory(uuid, new Callback<NamesHistory>() {
@Override
public void done(NamesHistory response, Exception error) {
if (error != null) {
// We have an error! Details: error.getMessage();
return;
}
// Anything you want
}
});
}
Feedback
Your reviews are greatly appreciated. Also if you found a bug, please, send report into my PM.

NamesHistory 3.0
Shows what names the player used before and more. Works on Bungee and Bukkit!
Recent Updates
- Update 3.0 Mar 30, 2015
- Update 2.2 Mar 29, 2015
- Fixes broken libraries after the 1.8.3 update. Mar 8, 2015