mirror of
https://github.com/CitizensDev/Citizens2.git
synced 2024-11-27 05:05:20 +01:00
Move file
This commit is contained in:
parent
056e0a920d
commit
816545cf59
@ -48,7 +48,7 @@ public class EquipmentEditor extends Editor {
|
|||||||
public void onPlayerInteractEntity(PlayerInteractEntityEvent event) {
|
public void onPlayerInteractEntity(PlayerInteractEntityEvent event) {
|
||||||
if (!plugin.getNPCManager().isNPC(event.getRightClicked())
|
if (!plugin.getNPCManager().isNPC(event.getRightClicked())
|
||||||
|| !plugin.getNPCManager().getNPC(event.getRightClicked()).equals(npc)
|
|| !plugin.getNPCManager().getNPC(event.getRightClicked()).equals(npc)
|
||||||
|| !event.getPlayer().getName().equals(player.getName()))
|
|| !event.getPlayer().equals(player))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
ItemStack hand = player.getItemInHand();
|
ItemStack hand = player.getItemInHand();
|
||||||
@ -92,24 +92,28 @@ public class EquipmentEditor extends Editor {
|
|||||||
break;
|
break;
|
||||||
case AIR:
|
case AIR:
|
||||||
for (int i = 0; i < 4; i++) {
|
for (int i = 0; i < 4; i++) {
|
||||||
if (trait.getEquipment(i) != null && trait.getEquipment(i).getType() != Material.AIR) {
|
if (trait.get(i) != null && trait.get(i).getType() != Material.AIR) {
|
||||||
player.getWorld().dropItemNaturally(npc.getBukkitEntity().getLocation(), trait.getEquipment(i));
|
player.getWorld().dropItemNaturally(npc.getBukkitEntity().getLocation(), trait.get(i));
|
||||||
trait.setEquipment(i, null);
|
trait.set(i, null);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Messaging.send(player, "<e>" + npc.getName() + " <a>had all of its items removed.");
|
Messaging.send(player, "<e>" + npc.getName() + " <a>had all of its items removed.");
|
||||||
}
|
}
|
||||||
// Now edit the equipment based on the slot
|
// Now edit the equipment based on the slot
|
||||||
if (trait.getEquipment(slot) != null && trait.getEquipment(slot).getType() != Material.AIR)
|
if (trait.get(slot) != null) {
|
||||||
player.getWorld().dropItemNaturally(npc.getBukkitEntity().getLocation(), trait.getEquipment(slot));
|
player.getWorld().dropItemNaturally(npc.getBukkitEntity().getLocation(), trait.get(slot));
|
||||||
trait.setEquipment(slot, hand);
|
}
|
||||||
if (hand.getAmount() > 1)
|
|
||||||
hand.setAmount(hand.getAmount() - 1);
|
ItemStack set = hand;
|
||||||
else
|
if (set != null && set.getType() != Material.AIR) {
|
||||||
hand = null;
|
if (hand.getAmount() > 1) {
|
||||||
player.setItemInHand(hand);
|
hand.setAmount(hand.getAmount() - 1);
|
||||||
if (set.getType() != Material.AIR)
|
} else {
|
||||||
|
hand = null;
|
||||||
|
}
|
||||||
|
player.setItemInHand(hand);
|
||||||
set.setAmount(1);
|
set.setAmount(1);
|
||||||
trait.setEquipment(slot, set);
|
}
|
||||||
|
trait.set(slot, set);
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -5,9 +5,9 @@ import java.util.List;
|
|||||||
import net.citizensnpcs.api.ai.AI;
|
import net.citizensnpcs.api.ai.AI;
|
||||||
import net.citizensnpcs.api.ai.NavigationCallback;
|
import net.citizensnpcs.api.ai.NavigationCallback;
|
||||||
import net.citizensnpcs.api.util.DataKey;
|
import net.citizensnpcs.api.util.DataKey;
|
||||||
|
import net.citizensnpcs.api.util.StorageUtils;
|
||||||
import net.citizensnpcs.editor.Editor;
|
import net.citizensnpcs.editor.Editor;
|
||||||
import net.citizensnpcs.util.Messaging;
|
import net.citizensnpcs.util.Messaging;
|
||||||
import net.citizensnpcs.util.StorageUtils;
|
|
||||||
|
|
||||||
import org.bukkit.ChatColor;
|
import org.bukkit.ChatColor;
|
||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
|
@ -1,33 +0,0 @@
|
|||||||
package net.citizensnpcs.util;
|
|
||||||
|
|
||||||
import net.citizensnpcs.api.util.DataKey;
|
|
||||||
|
|
||||||
import org.bukkit.Bukkit;
|
|
||||||
import org.bukkit.Location;
|
|
||||||
import org.bukkit.Material;
|
|
||||||
import org.bukkit.inventory.ItemStack;
|
|
||||||
|
|
||||||
public class StorageUtils {
|
|
||||||
|
|
||||||
public static Location loadLocation(DataKey root) {
|
|
||||||
root = root.getRelative("location");
|
|
||||||
return new Location(Bukkit.getWorld(root.getString("world")), root.getDouble("x"), root.getDouble("y"), root
|
|
||||||
.getDouble("z"), (float) root.getDouble("yaw", 0), (float) root.getDouble("pitch", 0));
|
|
||||||
}
|
|
||||||
|
|
||||||
public static ItemStack loadItemStack(DataKey root) {
|
|
||||||
root = root.getRelative("item");
|
|
||||||
return new ItemStack(Material.matchMaterial(root.getString("id")), root.getInt("amount"), (short) (root
|
|
||||||
.keyExists("data") ? root.getInt("data") : 0));
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void saveLocation(DataKey key, Location location) {
|
|
||||||
key = key.getRelative("location");
|
|
||||||
key.setString("world", location.getWorld().getName());
|
|
||||||
key.setDouble("x", location.getX());
|
|
||||||
key.setDouble("y", location.getY());
|
|
||||||
key.setDouble("z", location.getZ());
|
|
||||||
key.setDouble("yaw", location.getYaw());
|
|
||||||
key.setDouble("pitch", location.getPitch());
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user