我正在尝试创建一个配置文件,其中包含我的程序将在事件上运行的命令列表。它是一个字符串列表,获取它的方法是getConfig().getStringList()
。我想把它放在Bukkit.getServer().dispatchCommand(command_goes_here);
里面如何得到字符串(命令)列表并执行它们?
答案 0 :(得分:1)
尝试这些方法。
@EventHandler
public void onEvent(SomeEvent e) {
for(String command : thePlugin.getConfig().getStringList(configPath)) {
Bukkit.dispatchCommand(someCommandSender, command)
}
}
我不能非常具体,因为你的问题也不是。