Check when a player equips armor

Discussion in 'Plugin Development' started by wwzt, Nov 19, 2021.

Thread Status:
Not open for further replies.
  1. Offline

    wwzt

    I know this has been discussed before but I couldnt find an answer that helps me. I want to give a player invisibilty when he equips boots but i dont know how to do that. I already tried various things but nothing worked. I just need a simple solution on how to do this.


    Please excuse my bad spelling and grammar im not very good at english.
     
  2. Offline

    Kars

    You have to handle InventoryClickEvent and PlayerInteractEvent for equipping through clicking the inventory and right clicking boots in the hotbar respectively.
    Since this is slightly complex, i'll spoonfeed you this to get you started.
    PHP:
    List<MaterialbootsMaterialList = new ArrayList<>();
    // ^ fill this with all Materials for every type of boots

    public void onEquipEvent(InventoryClickEvent event) {
        if (!(
    event.getWhoClicked() instanceof Player))
            return;

        
    Player player = (Playerevent.getWhoClicked();

        
    ItemStack eventItem event.getCurrentItem();
        if (
    eventItem == null || !bootsMaterialList.contains(eventItem.getType())
            return;

        
    Runnable task = new Runnable() {
            @
    Override
            
    public void run() {
                
    ItemStack boots player.getInventory().getBoots();
                if (
    boots == eventItem) {
                    
    // player successfully equipped boots
                
    }
            }
        };
      
        
    Bukkit.getScheduler().scheduleSyncDelayedTask(plugintask1);
    }
    It comes from one of my plugins, with slight changes. I did not test this.
    Good luck.
     
  3. Offline

    Strahan

Thread Status:
Not open for further replies.

Share This Page