当前位置: 首页 > 知识库问答 >
问题:

Bukkit插件从config.yml获取位置

松雅健
2023-03-14

我正在尝试创建插件,当有人打开箱子时,它会检查箱子的位置是否与我的config.yml中的任何位置不匹配。所以我想这样做:

ArratList<Location> list = new ArrayList();
foreach(get world, x, y, z from each key in section Locations in my config) {
    list.add(new Location(world, x, y, z));
    foreach(Location l : list) {
    if(l == p.location...
}
}

编辑:现在我有了这段代码:

public class Listeners implements Listener {

    public Core plugin;
    public Listeners(Core core) {
        this.plugin = core;
    }

    @EventHandler
    private void onPlayerInteract(PlayerInteractEvent e) {
        if(e.getAction() == Action.RIGHT_CLICK_BLOCK) {
            if(plugin.createMode) {
                if (e.getClickedBlock().getType() == Material.CHEST) {
                    e.setCancelled(true);
                    Location loc = e.getClickedBlock().getLocation();
                    String name = plugin.name;
                    plugin.getConfig().set(name + ".world", loc.getWorld().getName());
                    plugin.getConfig().set(name + ".x", loc.getBlockX());
                    plugin.getConfig().set(name + ".y", loc.getBlockY());
                    plugin.getConfig().set(name + ".z", loc.getBlockZ());
                    plugin.saveConfig();
                    e.getPlayer().sendMessage(ChatColor.GOLD + "[ChestTreasure] " + ChatColor.RESET + "Treasury chest successfully created!");
                    plugin.createMode = false;
                }
            } else {
                if(e.getClickedBlock().getType() == Material.CHEST) {
                    plugin.chests.clear();
                    for (String key : plugin.getConfig().getKeys(false) ){
                        //We are getting every key from our config.yml file
                        ConfigurationSection location = plugin.getConfig().getConfigurationSection(key);
                        String world = location.getString(key + ".world");
                        int x = location.getInt(key + ".x");
                        int y = location.getInt(key + ".y");
                        int z = location.getInt(key + ".z");
                        e.getPlayer().sendMessage("Hondnota x je " + String.valueOf(x));
                        Location l = new Location(Bukkit.getWorld(world), x, y, z);
                        plugin.chests.add(l);
                    }
                    for(Location l : plugin.chests) {
                        e.getPlayer().sendMessage(String.valueOf(e.getClickedBlock().getLocation().getX()));
                        if(l == e.getClickedBlock().getLocation()) {
                            e.getPlayer().sendMessage("Jeej");
                        }
                    }
                }
            }
        }
    }
}

但是当我右键点击箱子时,消息jeej没有出现,所有出现的东西都是消息Hodnota x je 0。但是我的配置中有几个键,x在任何地方都不是0。在控制台中,会出现此错误:

[12:25:13 ERROR]: Could not pass event PlayerInteractEvent to ChestTreasure v1.0
org.bukkit.event.EventException
        at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:310) ~[spigot.jar:git-Spigot-5391d73-0ebb9c7]
        at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:62) ~[spigot.jar:git-Spigot-5391d73-0ebb9c7]
        at org.bukkit.plugin.SimplePluginManager.fireEvent(SimplePluginManager.java:502) [spigot.jar:git-Spigot-5391d73-0ebb9c7]
        at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:487) [spigot.jar:git-Spigot-5391d73-0ebb9c7]
        at org.bukkit.craftbukkit.v1_10_R1.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:231) [spigot.jar:git-Spigot-5391d73-0ebb9c7]
        at net.minecraft.server.v1_10_R1.PlayerInteractManager.a(PlayerInteractManager.java:492) [spigot.jar:git-Spigot-5391d73-0ebb9c7]
        at net.minecraft.server.v1_10_R1.PlayerConnection.a(PlayerConnection.java:890) [spigot.jar:git-Spigot-5391d73-0ebb9c7]
        at net.minecraft.server.v1_10_R1.PacketPlayInUseItem.a(SourceFile:55) [spigot.jar:git-Spigot-5391d73-0ebb9c7]
        at net.minecraft.server.v1_10_R1.PacketPlayInUseItem.a(SourceFile:11) [spigot.jar:git-Spigot-5391d73-0ebb9c7]
        at net.minecraft.server.v1_10_R1.PlayerConnectionUtils$1.run(SourceFile:13) [spigot.jar:git-Spigot-5391d73-0ebb9c7]
        at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source) [?:1.8.0_91]
        at java.util.concurrent.FutureTask.run(Unknown Source) [?:1.8.0_91]
        at net.minecraft.server.v1_10_R1.SystemUtils.a(SourceFile:45) [spigot.jar:git-Spigot-5391d73-0ebb9c7]
        at net.minecraft.server.v1_10_R1.MinecraftServer.D(MinecraftServer.java:733) [spigot.jar:git-Spigot-5391d73-0ebb9c7]
        at net.minecraft.server.v1_10_R1.DedicatedServer.D(DedicatedServer.java:399) [spigot.jar:git-Spigot-5391d73-0ebb9c7]
        at net.minecraft.server.v1_10_R1.MinecraftServer.C(MinecraftServer.java:672) [spigot.jar:git-Spigot-5391d73-0ebb9c7]
        at net.minecraft.server.v1_10_R1.MinecraftServer.run(MinecraftServer.java:571) [spigot.jar:git-Spigot-5391d73-0ebb9c7]
        at java.lang.Thread.run(Unknown Source) [?:1.8.0_91]
Caused by: java.lang.IllegalArgumentException: Name cannot be null
        at org.apache.commons.lang.Validate.notNull(Validate.java:192) ~[spigot.jar:git-Spigot-5391d73-0ebb9c7]
        at org.bukkit.craftbukkit.v1_10_R1.CraftServer.getWorld(CraftServer.java:1023) ~[spigot.jar:git-Spigot-5391d73-0ebb9c7]
        at org.bukkit.Bukkit.getWorld(Bukkit.java:500) ~[spigot.jar:git-Spigot-5391d73-0ebb9c7]
        at me.sudoman281.chestTreasure.Listeners.onPlayerInteract(Listeners.java:47) ~[?:?]
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91]
        at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
        at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91]
        at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:306) ~[spigot.jar:git-Spigot-5391d73-0ebb9c7]
        ... 17 more

共有2个答案

蔺弘
2023-03-14

您不需要从配置中获取每个单独的值(x,y,z,world ),因为:

Location实现ConfigurationSerializable,也就是说你可以只使用< code > config # set(" path . to . location ",your location);和< code > your Location =(Location)config # get(" path . to . Location ");

现在,除了你的例外:

我建议你学习如何阅读堆栈痕迹,因为这对你将来很有帮助。

从这些行:

       java.lang.IllegalArgumentException: Name cannot be null
        at org.apache.commons.lang.Validate.notNull(Validate.java:192) ~[spigot.jar:git-Spigot-5391d73-0ebb9c7]
        at org.bukkit.craftbukkit.v1_10_R1.CraftServer.getWorld(CraftServer.java:1023) ~[spigot.jar:git-Spigot-5391d73-0ebb9c7]
        at org.bukkit.Bukkit.getWorld(Bukkit.java:500) ~[spigot.jar:git-Spigot-5391d73-0ebb9c7]
        at me.sudoman281.chestTreasure.Listeners.onPlayerInteract(Listeners.java:47) ~[?:?]

我理解你调用了< code > buk kit . get world(null);(间接),因为world在这里是null < code > String world = location . getstring(key "。世界”);检查您的配置路径,(但是,我建议您只使用我上面提到的位置)

史超英
2023-03-14

您可以执行以下操作:将您的位置保存在配置中,如下所示:

# CONFIG.YML #
location1:
 x: 0
 y: 0
 z: 0
 world: "world"
location2:
 x: ....
 .
 .

然后,要获取我们去的所有配置:

ArrayList<Location> listLocations = new ArrayList<Location>();
for (String key : getConfig().getKeys(false) ){
    //We are getting every key from our config.yml file
    ConfigurationSection location = getConfig().getConfigurationSection(key);
    int x = location.getInt(key + ".x");
    int y = location.getInt(key + ".y");
    int z = location.getInt(key + ".z");
    String world = location.getString(key + ".world");
    Location l = new Location(Bukkit.getWorld(world), x, y, z);
    listLocations.add(l);
}

您现在应该将该配置文件上的所有位置都放在 ArrayList 列表中的位置,并可以从那里进行检查!

 类似资料:
  • 我做了一个插件,可以跟踪你在《我的世界》开采的钻石数量,并保存到config.yml文件中。但是我的代码似乎不工作,我不知道为什么? 我已经在setConfig参数中尝试了1,现在我已经切换到这个,它似乎仍然不起作用。我还在我的配置.yml文件中预定义了菱形。 当玩家执行命令/mydiamonds时,它会打印出“你已经开采了(a)钻石”。但不管你开采了多少钻石,它总是打印出零。

  • 我目前正在尝试使用bukkit插件。我每次都会遇到这个问题,想知道是否有人知道如何解决它。我已经尝试了你可以在谷歌上搜索的几乎所有修复方法,所以希望有人能分享一些光。 所有玩家事件都不起作用。当我用前面的@EventHandler做任何事情时,它就是不跑。下面是一个示例: 当在服务器上运行这个时,它永远不会看到玩家加入了游戏。

  • 当我试图在我的bukkit服务器中加载插件时,我遇到了NullPointerExc的问题,但在Eclipse中没有错误。我的插件是Rush插件,很多东西没有使用/丢失。错误是这样的: 以下是我的代码:

  • 我想把玩家点击的块的位置保存到两个变量中。 我尝试在使用该项目后触发一个事件,但只有当我在空中单击时才会生成该事件。 如果(p.getiteminhand().gettype()==Material.blaze_rod){System.out.println(“test”);} 我也尝试了这个设计,但代码仍然不能正常工作: 如果((p.getiteminhand().gettype()==Mate

  • 我正在尝试创建一个bukkit插件,当事件触发时,它将连接到tcp服务器并发送消息。 我已经掌握了基础知识,但我错过了一些东西,我不知道从这里开始。我可以看到该插件与服务器建立了连接,但随后抛出错误并且没有发送任何消息。 我正在尝试理解当事件发生时如何向tcp客户端发送字符串。为了测试,我使用了玩家移动事件。 当我启动时,我在craftbukkit服务器日志中看到以下内容: 当我与我的世界客户端连

  • 我有一个问题。我有一个我正在尝试使用的我的世界服务器插件,它不存在。 我收到以下错误: 无法将事件PlayerInteractEvent传递给XXX org.bukkit.event.EventException:org.bukit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:319)~[spigot-1.16.jar: