This is just an updated version of the attributes plugin by Azzier, which I will continue to maintain until the author can work on the plugin again. Switching between this and the original version of the plugin should not be a problem. Though this might not stay the case in the future as it seems the author is not coming back.
Item modifier procedures can only be used with the calculating attribute modifiers trigger. If not, they cause a build error.
Changelog
v2.4
-Ported to 2024.2 and neoforge 1.20.6
-Item modifier procedures are no longer deprecated, along with the attribute modifiers event
-The add modifier to item procedure that did not require the event is now deprecated
-Removed old bugged attributes from the attribute selection datalist
Comments
Also all the "Get value of attribute" base, non-base, modded, internal doesn't matter they all seem to be broken and just keep returning null with a custom attribute.
I don't know if you read these comments Nerdy but if you do please can you fix these 2 issues I've mentioned even if it isn't your code.
I think i fixed the issue on attribute modifiers in items
you can check it in my last post how i managed to add it to items without breaking anything and works even if there are multiples modifiers for the single attribute.
If you can check it here is the code, pretty easier to use and hope it helps you.
https://pastebin.com/TwNabuKF
is my first code in java
Im sorry to keep it up but i think i found the issue
Im not sure if you can look directly into the code but the bug of all attributes getting deleted seems to occur when you use UUIDMost UUIDLeast (or even maybe just a typo when merging data)
I know this because i replicate the same result when using commands, ended up with an armor piece with broken attributes as here. If you can see it maybe it will be a nice idea to try
Update: I checked the code of the plugin and i think i found the issue
The plugin uses UUID.fromString() to add the UUID to an attribute, i tested this with commands in creative and found out that this cause the same issue of other attributes getting deleted (even the "When on main hand:" text), this might be because UUID.fromString returns a hexadecimal representation of the UUID but only the integer array UUID seems to work in minecraft (no idea why was this working before but it looks like just minecraft decided to not work with hexadecimal anymore)
You can test this yourself with commands using /data modify
If you can modify this to just convert the UUID string directly into integer-array format this plugin will work again
so i tried this plugin in hopes it would work but looks like it doesnt
whenever i try to add a modifier to an item, it breaks all others attributes the item has and in the end gives nothing.
I have no idea why does this happen but it is happening since they changed the way modifiers were added to items
I would like to know if there is a fix to this
idk how to uhh send screenshots here I dont think I can but basically I used the mcstacker website to make a command, then I use nbt data/global persistant player data to set as some of the commands variables, and while im setting this up I bind this to an item so I can read a printout inchat/in console to see what the commands doing so if im being dumb it becomes really appartent what I have messed up, in the case of your attributes thing uhh I am ganna see if I cant dm you my attributes thing real quick if I can figure that out lmao I only currently use it to set health of entities but it can be used for anything on the mcstacker website
I mean in my case is just executing the command for the player to apply or update the modifier (enchantment levels change the value of the modifier) I already have a procedure to detect every time the player wear armor so i just need the command to work
if you can please thank you
and there is no procedure block for custom mod attributes for entity modifiers