hello, I found a problem that divides the stack incorrectly. when separating items , half of the items simply disappear ! this happens with items such as from the OreBonus and CoinSearch plugin radiation ore and coins ! can you fix the stacks ?
Plugin Compatibility issues, OreBonus, CoinSearch, radiation ore and coinsSolved
Actually, you are experiencing that problem because one or more of those plugins are using one or more of the same hooks.
This is not an issue with my plugin specifically.
Those plugins should be updated to un-subscribe from the same hooks when a plugin such as mine is detected to allow proper compatibility support.
Those are also all Russian paid plugins and some have not been updated since 2019.
Oddly enough, I bought a stack plugin and it fixed this error.
Merged post
you have a cool plugin, but it breaks my custom stacks of items
Do you have any actual console errors you could report to me for me to actually see what's happening?
Merged post
I've looked at the paid plugins you speak of and all download/purchases have been pulled or made un-available that I could find.
khan
Do you have any actual console errors you could report to me for me to actually see what's happening?
Merged postI've looked at the paid plugins you speak of and all download/purchases have been pulled or made un-available that I could find.
I didn't see any errors in the console! the error occurs when dividing the item !
Merged post
half of the items simply disappear when dividing the item in half ! when I try to divide the items in place of the taken item , 1 item remains and the other half remains where I moved the item !
if I take an item and divide it by breakage and start putting it in the same pile, in this case exactly half of the items disappear
Merged post
with any division of an object , exactly half of the objects disappear !
example I have 100 items from them I try to take 2 items in the end I have -2 items
and get 98 items !
I'll make you a video a little later so that you understand what I'm talking about
StackModifier (Item.battery.smallx500.328375 (Item)) Calling hook OnItemSplit resulted in a conflict between the following plugins: CoinSearch - Item.gluex500.328429 (Item),
Yea so it is erroring due to plugin conflictions like I had mentioned before. To fix that plugin go into its cs file and add the following.
[PluginReference] Plugin StackModifier;
private void OnServerInitialized()
{
if (StackModifier != null && StackModifier.IsLoaded)
{
Unsubscribe(nameof(OnItemSplit));
}
}
private void OnPluginLoaded(Plugin name)
{
if (name.Name == StackModifier)
{
Unsubscribe(nameof(OnItemSplit));
}
}
Merged post
Also, I spoke with DezLife the developer of OreBonous they will be pushing updates to fix our plugin conflicts as well by doing the same thing as I mentioned above with the conflicting hooks as seen in the image below.

Merged post
Stack Modifier is a highly in-depth plugin with advanced features which handles everything and anything to do with Stacking items / Splitting etc.
This means all other plugins must fully and completely allow mine to handle full game logic for it in order to work properly. I cannot find the developers of those other plugins you have but if you message me on discord I can help fix them to work with mine.
Locked automatically