use of com.mojang.authlib.properties.Property in project RedProtect by FabioZumbi12.
the class RedProtectUtil method createSkull.
public ItemStack createSkull(String texture) {
Material mat = Material.getMaterial("PLAYER_HEAD");
ItemStack s;
if (mat != null) {
s = new ItemStack(mat);
} else {
s = new ItemStack(Material.getMaterial("SKULL_ITEM"), 1, (short) 3);
}
SkullMeta sm = (SkullMeta) s.getItemMeta();
GameProfile gm = new GameProfile(UUID.randomUUID(), null);
gm.getProperties().put("textures", new Property("texture", texture));
Field profileField = null;
try {
profileField = sm.getClass().getDeclaredField("profile");
} catch (NoSuchFieldException | SecurityException e) {
e.printStackTrace();
}
profileField.setAccessible(true);
try {
profileField.set(sm, gm);
} catch (IllegalArgumentException | IllegalAccessException e) {
e.printStackTrace();
}
s.setItemMeta(sm);
return s;
}
use of com.mojang.authlib.properties.Property in project Denizen-For-Bukkit by DenizenScript.
the class Handler_v1_8_R3 method getPlayerProfile.
@Override
public PlayerProfile getPlayerProfile(Player player) {
GameProfile gameProfile = ((CraftPlayer) player).getProfile();
Property property = Iterables.getFirst(gameProfile.getProperties().get("textures"), null);
return new PlayerProfile(gameProfile.getName(), gameProfile.getId(), property != null ? property.getValue() : null, property != null ? property.getSignature() : null);
}
use of com.mojang.authlib.properties.Property in project Denizen-For-Bukkit by DenizenScript.
the class BlockHelper_v1_8_R3 method getPlayerProfile.
@Override
public PlayerProfile getPlayerProfile(Skull skull) {
GameProfile profile = ((CraftSkull) skull).getTileEntity().getGameProfile();
if (profile == null) {
return null;
}
String name = profile.getName();
UUID id = profile.getId();
Property property = Iterables.getFirst(profile.getProperties().get("textures"), null);
return new PlayerProfile(name, id, property != null ? property.getValue() : null);
}
use of com.mojang.authlib.properties.Property in project Denizen-For-Bukkit by DenizenScript.
the class Handler_v1_9_R2 method getPlayerProfile.
@Override
public PlayerProfile getPlayerProfile(Player player) {
GameProfile gameProfile = ((CraftPlayer) player).getProfile();
Property property = Iterables.getFirst(gameProfile.getProperties().get("textures"), null);
return new PlayerProfile(gameProfile.getName(), gameProfile.getId(), property != null ? property.getValue() : null, property != null ? property.getSignature() : null);
}
use of com.mojang.authlib.properties.Property in project Denizen-For-Bukkit by DenizenScript.
the class Handler_v1_9_R2 method fillPlayerProfile.
@Override
public PlayerProfile fillPlayerProfile(PlayerProfile playerProfile) {
try {
if (playerProfile != null) {
GameProfile gameProfile = new GameProfile(playerProfile.getUniqueId(), playerProfile.getName());
gameProfile.getProperties().get("textures").clear();
if (playerProfile.getTextureSignature() != null) {
gameProfile.getProperties().put("textures", new Property("textures", playerProfile.getTexture(), playerProfile.getTextureSignature()));
} else {
gameProfile.getProperties().put("textures", new Property("textures", playerProfile.getTexture()));
}
MinecraftServer minecraftServer = ((CraftServer) Bukkit.getServer()).getServer();
GameProfile gameProfile1 = null;
if (gameProfile.getId() != null) {
gameProfile1 = minecraftServer.getUserCache().a(gameProfile.getId());
}
if (gameProfile1 == null && gameProfile.getName() != null) {
gameProfile1 = minecraftServer.getUserCache().getProfile(gameProfile.getName());
}
if (gameProfile1 == null) {
gameProfile1 = gameProfile;
}
if (playerProfile.hasTexture()) {
gameProfile1.getProperties().get("textures").clear();
if (playerProfile.getTextureSignature() != null) {
gameProfile1.getProperties().put("textures", new Property("textures", playerProfile.getTexture(), playerProfile.getTextureSignature()));
} else {
gameProfile1.getProperties().put("textures", new Property("textures", playerProfile.getTexture()));
}
}
if (Iterables.getFirst(gameProfile1.getProperties().get("textures"), null) == null) {
gameProfile1 = minecraftServer.ay().fillProfileProperties(gameProfile1, true);
}
Property property = Iterables.getFirst(gameProfile1.getProperties().get("textures"), null);
return new PlayerProfile(gameProfile1.getName(), gameProfile1.getId(), property != null ? property.getValue() : null, property != null ? property.getSignature() : null);
}
} catch (Exception e) {
if (dB.verbose) {
dB.echoError(e);
}
}
return null;
}
Aggregations