Search in sources :

Example 21 with MinecraftServer

use of net.minecraft.server.v1_16_R2.MinecraftServer in project SilkSpawners by timbru31.

the class NMSHandler method loadPlayer.

@SuppressWarnings("resource")
@Override
public Player loadPlayer(final OfflinePlayer offline) {
    if (!offline.hasPlayedBefore()) {
        return null;
    }
    final GameProfile profile = new GameProfile(offline.getUniqueId(), offline.getName() != null ? offline.getName() : offline.getUniqueId().toString());
    final MinecraftServer server = ((CraftServer) Bukkit.getServer()).getServer();
    final EntityPlayer entity = new EntityPlayer(server, server.getWorldServer(World.OVERWORLD), profile, new PlayerInteractManager(server.getWorldServer(World.OVERWORLD)));
    final Player target = entity.getBukkitEntity();
    if (target != null) {
        target.loadData();
    }
    return target;
}
Also used : Player(org.bukkit.entity.Player) OfflinePlayer(org.bukkit.OfflinePlayer) CraftPlayer(org.bukkit.craftbukkit.v1_16_R2.entity.CraftPlayer) EntityPlayer(net.minecraft.server.v1_16_R2.EntityPlayer) GameProfile(com.mojang.authlib.GameProfile) PlayerInteractManager(net.minecraft.server.v1_16_R2.PlayerInteractManager) EntityPlayer(net.minecraft.server.v1_16_R2.EntityPlayer) CraftServer(org.bukkit.craftbukkit.v1_16_R2.CraftServer) MinecraftServer(net.minecraft.server.v1_16_R2.MinecraftServer)

Example 22 with MinecraftServer

use of net.minecraft.server.v1_16_R2.MinecraftServer in project SilkSpawners by timbru31.

the class NMSHandler method loadPlayer.

@SuppressWarnings("resource")
@Override
public Player loadPlayer(final OfflinePlayer offline) {
    if (!offline.hasPlayedBefore()) {
        return null;
    }
    final GameProfile profile = new GameProfile(offline.getUniqueId(), offline.getName() != null ? offline.getName() : offline.getUniqueId().toString());
    final MinecraftServer server = ((CraftServer) Bukkit.getServer()).getServer();
    final EntityPlayer entity = new EntityPlayer(server, server.getWorldServer(DimensionManager.OVERWORLD), profile, new PlayerInteractManager(server.getWorldServer(DimensionManager.OVERWORLD)));
    final Player target = entity.getBukkitEntity();
    if (target != null) {
        target.loadData();
    }
    return target;
}
Also used : Player(org.bukkit.entity.Player) CraftPlayer(org.bukkit.craftbukkit.v1_15_R1.entity.CraftPlayer) OfflinePlayer(org.bukkit.OfflinePlayer) EntityPlayer(net.minecraft.server.v1_15_R1.EntityPlayer) GameProfile(com.mojang.authlib.GameProfile) PlayerInteractManager(net.minecraft.server.v1_15_R1.PlayerInteractManager) EntityPlayer(net.minecraft.server.v1_15_R1.EntityPlayer) CraftServer(org.bukkit.craftbukkit.v1_15_R1.CraftServer) MinecraftServer(net.minecraft.server.v1_15_R1.MinecraftServer)

Example 23 with MinecraftServer

use of net.minecraft.server.v1_16_R2.MinecraftServer in project SilkSpawners by timbru31.

the class NMSHandler method loadPlayer.

@SuppressWarnings("resource")
@Override
public Player loadPlayer(final OfflinePlayer offline) {
    if (!offline.hasPlayedBefore()) {
        return null;
    }
    final GameProfile profile = new GameProfile(offline.getUniqueId(), offline.getName() != null ? offline.getName() : offline.getUniqueId().toString());
    final MinecraftServer server = ((CraftServer) Bukkit.getServer()).getServer();
    final EntityPlayer entity = new EntityPlayer(server, server.getWorldServer(DimensionManager.OVERWORLD), profile, new PlayerInteractManager(server.getWorldServer(DimensionManager.OVERWORLD)));
    final Player target = entity.getBukkitEntity();
    if (target != null) {
        target.loadData();
    }
    return target;
}
Also used : CraftPlayer(org.bukkit.craftbukkit.v1_13_R2.entity.CraftPlayer) Player(org.bukkit.entity.Player) OfflinePlayer(org.bukkit.OfflinePlayer) EntityPlayer(net.minecraft.server.v1_13_R2.EntityPlayer) GameProfile(com.mojang.authlib.GameProfile) PlayerInteractManager(net.minecraft.server.v1_13_R2.PlayerInteractManager) EntityPlayer(net.minecraft.server.v1_13_R2.EntityPlayer) CraftServer(org.bukkit.craftbukkit.v1_13_R2.CraftServer) MinecraftServer(net.minecraft.server.v1_13_R2.MinecraftServer)

Aggregations

GameProfile (com.mojang.authlib.GameProfile)23 OfflinePlayer (org.bukkit.OfflinePlayer)15 Player (org.bukkit.entity.Player)15 Property (com.mojang.authlib.properties.Property)4 PlayerProfile (net.aufdemrand.denizen.nms.util.PlayerProfile)4 MinecraftServer (net.minecraft.server.v1_10_R1.MinecraftServer)3 MinecraftServer (net.minecraft.server.v1_11_R1.MinecraftServer)3 MinecraftServer (net.minecraft.server.v1_8_R3.MinecraftServer)3 MinecraftServer (net.minecraft.server.v1_9_R2.MinecraftServer)3 CraftServer (org.bukkit.craftbukkit.v1_10_R1.CraftServer)3 CraftServer (org.bukkit.craftbukkit.v1_11_R1.CraftServer)3 EntityPlayer (net.minecraft.server.v1_16_R1.EntityPlayer)2 MinecraftServer (net.minecraft.server.v1_16_R1.MinecraftServer)2 PlayerInteractManager (net.minecraft.server.v1_16_R1.PlayerInteractManager)2 EntityPlayer (net.minecraft.server.v1_16_R2.EntityPlayer)2 MinecraftServer (net.minecraft.server.v1_16_R2.MinecraftServer)2 PlayerInteractManager (net.minecraft.server.v1_16_R2.PlayerInteractManager)2 EntityPlayer (net.minecraft.server.v1_16_R3.EntityPlayer)2 MinecraftServer (net.minecraft.server.v1_16_R3.MinecraftServer)2 PlayerInteractManager (net.minecraft.server.v1_16_R3.PlayerInteractManager)2