Im pretty sure there is a plugin for this but i could not find it. Basically im looking for a plugin that lets me choose how someones inventory will look when they first join and all the times they join after that. It wont allow them to drop any of the items or move them in their inventory. If this hasn't been made yet could someone please do this for me, that would be awesome. Thanks!
That is not the same, that is for dropping inventory when dead, the OP wants it so you can't move items around in your inventory
I won't be able to do this for you but what others should look at would be InventoryClickEvent http://jd.bukkit.org/rb/doxygen/d9/...vent_1_1inventory_1_1InventoryClickEvent.html Every time isRightClick () | isLeftClick () | isShiftClick () is triggered cancel the event.
You can do to prevent the dropping, preventing moving items in inventory use the above InventoryClickEvent Code: public void onDropItem(PlayerDropItemEvent event) { Player player = event.getPlayer(); player.sendMessage(ChatColor.GRAY + "You don't want to break it... SO DON'T DROP IT!"); event.setCancelled(true);