Jump to content

imthenewguy

Creator
  • Posts

    3,442
  • Joined

  • Last visited

Everything posted by imthenewguy

  1. Yeah generally. I will have to take a peak at it tomorrow. Have you adjusted the lang file? Ill respond when I wake up, heading to bed for now.
  2. What value you have you set in the following config option: "Currency type to respec [scrap, economics, srp, custom]"
  3. Oh, you need to use whatever syntax his plugin requires you to use for the ID. If his plugin normally requires you to use $player.id then you would need to use that.
  4. What are you trying to achieve? Some commands have the {id} and {name} tags that you can use, depends what you are wanting to do though.
  5. imthenewguy

    Cooking

    Ingredients use a float system. 1.0 would represent a 100% chance to drop ingredients, while 0.05 would represent a 5% drop chance. The drop chance for the recipes are based out of 100, so 3.0 would be 3%, 15.0 would be 15% etc.
  6. Not a clue; I don't own it and I am not sure how it functions internally. This plugin destroys the default behavior of the planterbox and handles how the growable entities progress. It does call all of the standard oxide hooks though, so if AutoFarm works off of the oxide hooks, it SHOULD work ok, but you may need to reach out to Razor and ask.
  7. imthenewguy

    Cooking

    Have you assigned all of the permissions? The drop sources I would need to check when I get home.
  8. imthenewguy

    Cooking

    Ahh that was one option I forgot to add to the menu. Just added it; will be in the next release.
  9. Changed Status from Pending to Closed Changed Fixed In to Next Version
  10. Hey yeah I have that one fixed on my discord. Currently being tested.
  11. imthenewguy

    Zip file

    Changed Status from Pending to Closed
  12. Changed Status from Pending to Closed
  13. imthenewguy

    Wipe 4 August

    Changed Status from Pending to Closed
  14. imthenewguy

    please sir

    Changed Status from Pending to Closed
  15. Unfortunately not with it's current prize structure.
  16. imthenewguy

    New bug

    Seems like you may have messed up one of the strings in the config.
  17. Hey mate I have stacks sorted on my next release. They are going to be handled via Harmony so it should sort the issue out.
  18. imthenewguy

    Another bug reported

    Will wrap it in try catch next release.
  19. It's 2492329501
  20. No eta yet. It's available on my discord if you are desperate.
  21. I don't think that's right. I am fairly sure there isn't any benefit of having 6 yield genes on a clone, since you get the same yield with 4 Y genes. Each gene only increases the berry yield value by 0.25. This is how the match is handled in the method: public void UpdateHealthAndYield(float overallQuality, float actualStageAgeIncrease) { if (GetPlanter() == null && UnityEngine.Random.Range(0f, 1f) <= ConVar.Server.nonPlanterDeathChancePerTick) { base.health = 0f; return; } if (overallQuality <= 0f) { ApplyDeathRate(); } base.health += overallQuality * currentStage.health * growDeltaTime; if (yieldPool > 0f) { float num = currentStage.yield / (currentStage.lifeLengthSeconds / growDeltaTime); float num2 = Mathf.Min(yieldPool, num * (actualStageAgeIncrease / growDeltaTime)); yieldPool -= num; float num3 = 1f + (float)Genes.GetGeneTypeCount(GrowableGenetics.GeneType.Yield) * 0.25f; Yield += num2 * 1f * num3; } } SkillTree simply adjusts the gene structure of the plant before it is deployed. It does not make any changes to its growth cycles etc as that is all calculated natively.
  22. imthenewguy

    market sell....

    Changed Status from Pending to Closed
  23. It's fixed in 1.4.0. You are welcome to join my discord for early access as a tester.
1.6m

Downloads

Total number of downloads.

7.7k

Customers

Total customers served.

115.6k

Files Sold

Total number of files sold.

2.4m

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.