Jump to content

Scalbox

Creator
  • Posts

    1,391
  • Joined

  • Last visited

  • Days Won

    16

Everything posted by Scalbox

  1. Scalbox

    Cloning Special Seeds

    At the moment there is a problem with the genes, that's why I wrote that in the next update "the genetics system will be improved"
  2. Scalbox

    Cloning Special Seeds

    if you want to avoid this for now, go to the plugin and delete this stuff, starting from line 2347 // Hook per controllare se due item possono essere impilati // Evita che due cloni con genetica diversa possano essere impilati [Hook] private object? CanStackItem(Item item, Item targetItem) { if (item == null || targetItem == null) return null; if (item.info?.itemid != targetItem.info?.itemid) return null; // Controlla se sono cloni var itemDef = item.info; if (itemDef == null) return null; // Verifica se l'item è un clone var isClone = PlanterBoxAllowedItems.TryGetValue(itemDef.itemid, out var itemData) && itemData.ItemType == PlanterBoxItemType.Clone; if (!isClone) return null; // Se sono cloni, controlla se hanno la stessa genetica var itemGenes = item.instanceData?.dataInt ?? 0; var targetGenes = targetItem.instanceData?.dataInt ?? 0; // Se la genetica è diversa, impedisci lo stacking if (itemGenes != targetGenes) return false; return null; }
  3. Scalbox

    Cloning Special Seeds

    The clones all have different genes, so they can't be merged; the genes are different. We'll make some changes to this in the next release to decide how to handle the clone genes, but that's how it works in Rust; the clones have different genes.
  4. Scalbox

    Cloning Special Seeds

    Changed Status from Pending to Closed Changed Fixed In to 1.3.0
  5. Scalbox

    Cloning Special Seeds

    Plugin updated 1) Added: Possibility to clone Special Seeds 2) Updated: Planter Box, Changed water configuration property: From Water Level to Water Quality 3) Added: Planter Box, property to change Overall Quality
  6. Plugin updated 1) Added: Possibility to clone Special Seeds 2) Updated: Planter Box, Changed water configuration property: From Water Level to Water Quality 3) Added: Planter Box, property to change Overall Quality NB: The configuration parameter Water, minimum value always available. Value between 0 and 9000 (6500 is the perfect value) (-1 disable). Default -1 has been replaced with the parameter Water quality. Value between 0% and 100% (-1 disable). Default -1 You will need to adjust the value in your configuration file. NEXT UPDATE 1) Ability to enable automatic sowing of Special Seeds 2) Improved management of Special Clone genetics 3) Storage Adaptor support for Mining Quarry and Mining Pump Jack 4) Ability to change the production rate for planters and horse manure 5) And much more...
  7. Scalbox

    feature request

    Changed Status from Pending to Work in Progress
  8. As I was telling you this is an old user interface, it will be rewritten to be always in the same place, like the new interfaces of my plugins, but this takes some time, I'm busy with another plugin at the moment
  9. It's just the first part that looks a little smaller, I can fix that, but for the rest I can't do anything else.
  10. I'm sorry, I've tried various ways but I can't reproduce the problem.
  11. Scalbox

    Auto closing doors

    Changed Status from Pending to Not a Bug
2.1m

Downloads

Total number of downloads.

9.7k

Customers

Total customers served.

140.5k

Files Sold

Total number of files sold.

3m

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.