Supported MCreator versions
          2023.3
          2024.1
              Downloads:
1539
    Upvotes: 11
    
  About the plugin
              My Ko-fi link:
 
If you need anything, contact me on discord (zsvan), 
otherwise I don't really check forums.
Vex adds some niche procedures and global triggers.
Forge 1.20.1 / Neoforge 1.20.4 triggers:
- Entity dying xp drop event (cancellable)
- Entity dying item drop event (cancellable)
- Enderman anger (cancellable) (works a bit differently than it sounds, basically you can make anything cancel the event like pumpkin helmet does)
- Baby entity spawns
- Equipment slot changes (mainhand, offhand, head etc. - slot for now can be gotten in string form)
Forge 1.16.5, 1.19.2, 1.19.4, 1.20.1 + Neoforge 1.20.4:
 
Forge 1.19.2:
 
Example how to use LivingDropsEvent to cancel item dropping from entity:
 
And code used in the custom code snippet:
        for (ItemEntity itemEntity : ((LivingDropsEvent)event).getDrops()) {
            ItemStack itemStack = itemEntity.getItem();
            if (itemStack.getItem() == dontDrop.getItem()) {
itemEntity.remove(ItemEntity.RemovalReason.DISCARDED);
            }
        }Project members
          Developer
      
            
      
      License
              GNU General Public License version 3 (GPLv3)
          
Plugins may contain bugs, break workspaces, or alter the way MCreator operates.
Plugins are not official or affiliated with Pylo in any way.
In case of any copyright infringement or suspicious downloads, please let us know as soon as possible.
Plugin downloads
          
      
      
          2024.1 (Forge 1.20.1, Neoforge 1.20.4) - Vex-1.3-b.zip      
      Uploaded on: 06/29/2024 - 17:39   File size: 10.95 KB
          
      
      
          Outdated (Forge 1.16.5, 1.19.2, 1.19.4, 1.20.1) - Vex-1.2.2.zip      
      Uploaded on: 10/11/2023 - 16:21   File size: 13.72 KB
              Comments
for 1.20.1 maybe one that adds a field that detects things for example the locate command has a thing when you go to biomes the biomes even modded biomes appear maybe something like that for example i am making a mod where you can tp to dimmensions but it would be nice to have a list that i can sellect then push tab to chosse that
 
   
   
   
   
   
   
   
   
   
   
  
can't use the LivingDropsEvent, because the looting lvl dependency has a space in it :')