Jump to content

1 Screenshot

  • 75.8k
  • 7.9k
  • 139.76 kB

Recommended Comments



Will buy the plugin when on discount as the dollar is very  expensive in my country atm 😞  271 South african rands is crazy

 

  • Like 1
Link to comment
Share on other sites

No this is the paid version. The free version on umod by me doesn't include the UI editor.

Edited by Khan
  • Like 1
Link to comment
Share on other sites

Recently set up the plugging, 

Wonderful UI etc 

Just quick question 

Having issues with few items and components stacking where you try to stack 2 items and they just disappear in to 1, but the stack size doesn't increase, 

Example: 1 smg body in invt and 1 smg body in loot crate, if I hoover or ever drag the item on to my invt smg body it will disappear, and not stack 

Other plugins that effect loot are 

Betterloot 

Gathermanager

Link to comment
Share on other sites

So I got two things I would like to get figured out, I seen this plugin, I have been using free version about two years. For several months maybe like 4 months I have noticed High Quality Metal Refined does not stack to 300, if I change it in the config file or reset through controller and put back to 300 it then allows it to stack to 300 until the server restarts then it only allows 100 in a stack. From my understanding the paid version would fix weird bugs like that and stuff, however after purchasing the paid version it still exist. Can you help me figure out why this is?

Also on another note, I use https://umod.org/plugins/stack-item-storage it is also a plugin you developed, it is no longer working, I am not sure if that's because it doesn't work with the paid version or if you just haven't updated it, but thought i'd say something.

Link to comment
Share on other sites

The error still persists even with version 2.0.6.
I even tried deleting the configuration file and reinstalling it, but the error continues to occur.
Is this related to a silent fix made by FacePunch that changed the Tags of the items?
I paid for this plugin, so are there any plans to fix it?
and i like this plug-in.

Link to comment
Share on other sites

Thank you for choosing to use my work,

I haven't received any support tickets or reports about any error's, if you are experiencing problems or an error please create a support ticket.

I see in the previous post it shows your server was saving a bunch of files
OnServerSave which would slow down any server while that is processing.

Stack Modifier only does a 1 time initial load/setup of the server & has no data file to save or update.
& It is wrapped in a Coroutine to ensure zero performance degradation from it loading.


Hook time warnings will always occur for various reasons that are outside the hands of the developer for server owners.

 

This is because servers run a huge number of other plugins, lots of which have problems such as conflicts or are doing something inside the same hook as another plugin thus resulting in high-er hook time warnings because 1 plugin is using the same hook before the other plugin can touch it.

I would advise disabling some of the features inside stackmodifier such as
Wearable Clothes save config & reload to take affect.


Feel free to message me on discord @Khan#8615 or create a support ticket.

2 hours ago, guu_3 said:

The error still persists even with version 2.0.6.
I even tried deleting the configuration file and reinstalling it, but the error continues to occur.
Is this related to a silent fix made by FacePunch that changed the Tags of the items?
I paid for this plugin, so are there any plans to fix it?
and i like this plug-in.

Link to comment
Share on other sites

      "photo": {
        "ShortName": "photo",
        "ItemId": 62577426,
        "DisplayName": "Photograph",
        "Modified": 1,
        "Disable": false

Even when I have photos set to only stack to 1 they are still stacking to multiples. Do you know why?

Link to comment
Share on other sites

2.0.9 & 2.1.0 were pulled, both were only available for a few hours before the bug was noticed.

2.0.8 is the current version everyone should use for now.

2.0.9+ was supposed to be a plugin compatibility update mainly, but the changes made had unforeseen issues, a new update is being worked on & will restore compatibility with imthenewguys plugins by this weekend at the latest.

 

20 hours ago, Dana Caballero Medina said:

Serious bug, only one piece of clothing can be worn, please solve this problem as soon as possible

 

Edited by Khan
Link to comment
Share on other sites

Before I buy. 
Stacks that are larger than specified and are moved with the right mouse button retain their size. Can this be changed?

Example, the free version of uMod.
You get 32000 sulfur from a raidbase as a stack.
However, the stack modifier indicates a size of 10000. When I click with the left mouse button to move the stack, it is split. When I right-click to move the stack, it retains the size 32000. 
Your plugin does not prevent this. Can this be changed?

Link to comment
Share on other sites

@Kobani
Plugins that give anything to players should be respecting the stack sizes set on the server so that would be a 3rd party plugin bug.

I ran and maintained GUIShop on umod for 4 or 5 years roughly and I had implemented special code that respects server stack sizes whenever any items where given to the player. 

So that would be something to ask nivex for to add support that respects server set stack sizes when giving the players items. 

I took screen shots of the code I made in guishop that handles stack size checks accordingly and gives the player the items in stack sizes that respect the server set amounts. 

image.png

image.png

Link to comment
Share on other sites
5 hours ago, Khan said:

@Kobani
Plugins that give anything to players should be respecting the stack sizes set on the server so that would be a 3rd party plugin bug.

I ran and maintained GUIShop on umod for 4 or 5 years roughly and I had implemented special code that respects server stack sizes whenever any items where given to the player. 

So that would be something to ask nivex for to add support that respects server set stack sizes when giving the players items. 

I took screen shots of the code I made in guishop that handles stack size checks accordingly and gives the player the items in stack sizes that respect the server set amounts. 

image.png

image.png

Thanks for the detailed answer.
Raidbase was just an example to explain where the larger stacks might be coming from. Sorry

Actually, it's generally about stacks that are larger than specified in StackModifier. If you move them with a right click, they are not split. No matter if it's a crate, backpack ..... 
I am currently using the Umod version of StackModifier.
And before I buy the paid version now I would like to know if this prevents this or if you could add this.

 

Link to comment
Share on other sites

@Kobani
Okie so stack-modifier just sets the server stacks and does handle certain use cases. 

However again what you are describing is 3rd party plugins not respecting the server set stack sizes.

Whenever a player receives an item from any plugin that plugin should be handing it to the player from the server set stack sizes which is where the main issue is coming from that you are describing.
 

I've had to patch and update a lot of plugins to fix/respect server set stack-sizes in order for issues to not come up like this. ( kits, guishop, etc )

The game natively gives you items / stacks of items no larger then the server set stack size limits, such as vending machines etc.

So the fact is its still other developers making plugins that don't follow that logic and they don't check the stack sizes properly prior to handing the items to the player.

In summary any plugin you see that is giving players items in stacks higher then they are set on the server are bugged. And those developers need to go into their code and update the logic accordingly so that they are not bypassing the server set stack size limits.

  • Like 1
Link to comment
Share on other sites

@Ping Chun Chang
A support ticket with the console error would be great if you have it?

42 minutes ago, Ping Chun Chang said:

it's giving me a console error for the latest FP patch EggHunt.  item definition.

 

Link to comment
Share on other sites

Is there no way in your plugin to customize the stack size for fuel in the mine helmet, fuel generator, etc.?

Edited by Kobani
Link to comment
Share on other sites
Khan

Posted (edited)

@Kobani
I was developing a feature addition for different stack sizes in storage containers specifically but haven't had a chance to finish the design / implementation ( lack of testers mainly ).

But currently the plugin only handles setting server stack sizes it doesn't handle separate stack sizes in different storage containers. At the moment you would need another plugin to handle that. 

3 hours ago, Kobani said:

Is there no way in your plugin to customize the stack size for fuel in the mine helmet, fuel generator, etc.?

 

Edited by Khan
Link to comment
Share on other sites
8 hours ago, Khan said:

@Kobani
I was developing a feature addition for different stack sizes in storage containers specifically but haven't had a chance to finish the design / implementation ( lack of testers mainly ).

But currently the plugin only handles setting server stack sizes it doesn't handle separate stack sizes in different storage containers. At the moment you would need another plugin to handle that. 

 

Thank you for your feedback. So, if they need someone to test....
And if not, could you tell me a plugin that does this? I know there is a well known stack plugin that does this, but I switched from that one to yours just because of the UI. So it would be a shame to do this because theirs is really more than easy to use. 😉

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Like 11
  • Confused 1
  • Haha 2
  • Love 5

User Feedback

1.3m

Downloads

Total number of downloads.

6.5k

Customers

Total customers served.

95.8k

Files Sold

Total number of files sold.

1.9m

Payments Processed

Total payments processed.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.