Advertisement
Guest User

Untitled

a guest
Dec 2nd, 2013
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. for (String path : getConfig().getConfigurationSection("pvprewards.item.list").getKeys(false)) {
  2. int id = getConfig().getConfigurationSection("pvprewards.item.list" + ".id");
  3. int count = getConfig().getConfigurationSection("pvprewards.item.list" + ".count");
  4. String name = getConfig().getConfigurationSection("pvprewards.item.list" + ".name");
  5.  
  6. ItemStack item = new ItemStack(id, count);
  7. item.setDisplayName(name)
  8. p.getInventory().addItem(item);
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement