leluckyy Posted April 22, 2019 Share Posted April 22, 2019 Also, tut mir leid das ich hier noch etwas fragen muss aber hier meine Frage: Ich versuche ein Inventar abzuspeichern beim Quitten und leere dann das Inventar und das ist dann auch abgespeichert in der Config aber ich schaffe es nicht aus dieser Liste das wieder aus der Config auszulesen und in das Inventar rein zu setzen. Ich hoffe ihr versteht mein Problem und könnt mir irgendwie helfen. So sieht das abspeichern aus, ich wollte es nicht in einer Liste haben (Also Config-Liste) deswegen habe ich das einfach so stumpf abgespeichert: https://pastebin.com/2YGCNSy1 Link to comment Share on other sites More sharing options...
Yuki Posted April 23, 2019 Share Posted April 23, 2019 Hi, hab das nicht getestet, aber probiere mal: PlayerInventory inv = player.getInventory(); YamlConfiguration cfg = YamlConfiguration.loadConfiguration(file); List<ItemStack> items = (List<ItemStack>) cfg.getList("Items"); inv.setContents(items.toArray(new ItemStack[items.size()])); List<ItemStack> armor = (List<ItemStack>) cfg.getList("Armor"); inv.setArmorContents(armor.toArray(new ItemStack[armor.size()])); -Yuki Link to comment Share on other sites More sharing options...
leluckyy Posted April 23, 2019 Author Share Posted April 23, 2019 vor einer Stunde schrieb Yuki: Hi, hab das nicht getestet, aber probiere mal: PlayerInventory inv = player.getInventory(); YamlConfiguration cfg = YamlConfiguration.loadConfiguration(file); List<ItemStack> items = (List<ItemStack>) cfg.getList("Items"); inv.setContents(items.toArray(new ItemStack[items.size()])); List<ItemStack> armor = (List<ItemStack>) cfg.getList("Armor"); inv.setArmorContents(armor.toArray(new ItemStack[armor.size()])); -Yuki Danke, das hat mir sehr geholfen Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now