Jump to content

Stormo

Creator
  • Posts

    261
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Stormo

  1. Understood, thank you for the response.
  2. Hi there, very interesting idea. Would it be possible to replace the quarry with a furnace, so it would be two in one — you can both smelt and generate electricity? Even better if there were different tiers, for example with a large furnace and a refinery. If this could be implemented, it would be really cool.
  3. Hi there, I’ve already figured out what the problem was. I tied your plugin to the progression of many things, and I have levels in the progression (for example, level 5 for HP upgrades). But my players don’t do it the way it was intended — instead, they collect all the upgrade items for all 5 levels and level them up at once. I just didn’t think this through and didn’t set any crafting time, it was set to 0 seconds. Now I’ll add at least a one‑minute crafting time, so they won’t be able to spam crafting so quickly across different slots.
  4. Hello, I’m not sure whether this is related or not, but the server has recently started crashing quite often, specifically at the moment when a player crafts a large number of items at once. In general, I am using console commands on items during crafting. Could this be the cause? Before the server crash, the player saw the following messages in their console. Can you help with this? Could this be caused by the fact that I modified your plugin so that it stores cooldowns (CD) in the data file?
  5. Stormo

    Questionv3

    It’s the same as Chinese and Japanese. No, they are different languages.
  6. Stormo

    Questionv3

    Can you also add Ukrainian translations for the fish and the rest of the text?
  7. Stormo

    Questionv3

    I changed it and the price started working, and my language wasn’t Russian, it was Ukrainian.
  8. Stormo

    Questionv3

    I’ll try now.
  9. Stormo

    Questionv3

    This is what I did so that nothing can be caught with the basic fishing rod and trap, but if it is supposed to be configured that way, I will fix it. plumbus_coin is an in-game item added through this plugin https://codefling.com/plugins/custom-item-manager
  10. Stormo

    Questionv3

    When you fish with a fishing rod, everything works fine with selling, but for some reason it doesn’t work the same way with traps and farms—it’s like this. ExtraFishing.json
  11. Stormo

    Questionv3

    This is from fish traps. I increased FishSizeMultiplier and ChanceBonus, but for some reason the selling price is still very low. Maybe I configured something incorrectly. However, when fishing with rods, the difference in weight and size does affect the selling price.
  12. Stormo

    Questionv3

    Good afternoon, I wanted to ask why the fish from the farm all have the same price of 16, while the one that was placed there first costs 41. I thought the price depends on weight—am I mistaken?
    Very cool plugin, and with the release of the update it has become even more interesting — my players will love it. Definitely, if you want to add something new to your server so players don’t get bored, it’s 100% worth buying. I’d even say it’s not just one plugin, but several in one!
  13. Stormo

    Question

    Very nice, thank you for the update! I have one more question: would it be possible to add multiple currencies for selling? So that a player can choose what to sell for on the market — for example, scrap, items, or economy currency?
  14. Stormo

    Question #2

    Hello! This is a really great update — thank you, you’ve done an excellent job I have another question that I think you might also find interesting Is it possible to implement a statistics table in this window — for example, showing which player has caught the most fish by weight on the server? It would also be great if rewards could be configured via the config file — for example, giving rewards for first place (or multiple top positions) using console commands, so server owners can flexibly reward players with anything they want. And, for example, during a wipe: at the start of a new wipe, it would be very useful to run a console command that automatically gives a reward to the player who held first place in the previous period.
  15. I bought this plugin: https://codefling.com/plugins/item-perks. I paid using my site balance and $5 from my card. For some reason, the money was charged, but I don’t have access to download it on the site. Later I noticed that a confirmation email was supposed to be sent, but I no longer have access to that email. I have now changed it to a new one, and I’m not sure what to do next. Could you please help me?
  16. Stormo

    Question

    Good afternoon, thank you for your reply, but we have already found the problem. It’s due to weak graphics cards — they are very old. These are exactly the 4 players who were complaining that when they look around, their game lags.
  17. Stormo

    Item Perks

    I wanted to ask, when will there be a discount? I would like to buy. 20$ nice price)
  18. Stormo

    Refund

    “Okay, we’ll wait, that’s life. I just thought you wouldn’t fix it anymore.
  19. Stormo

    Question

    After the global wipe, some players started complaining that when they look at an auto farm, everything begins to lag. Could this be due to an update, or is there a way to fix it?
  20. Stormo

    Refund

    Good afternoon, I would like to request a refund to my account, as we have been waiting for a fix for a very long time.
  21. I found an issue in CraftingPanel v1.3.4 related to cooldown persistence. Cooldowns were not being saved in the data file, which caused them to reset after plugin reload or server restart. After investigating the code, I found that cooldowns are actually added to the data dictionary correctly, but then player data gets removed in OnPlayerDisconnected if the player has no favorite items. Specifically, this block removes all player data: if (data.ContainsKey(player.UserIDString) && data[player.UserIDString].favoriteItems.Count != 0) data[player.UserIDString].lastSeenTime = DateTime.Now.ToString("d", CultureInfo.InvariantCulture); else data.Remove(player.UserIDString); This ignores cooldownItems, so if a player has cooldowns but no favorites, their data is deleted, and cooldowns are lost. I fixed it by updating the condition to also keep players who have cooldowns: if (data.ContainsKey(player.UserIDString)) { UserData userData = data[player.UserIDString]; if (userData.favoriteItems.Count != 0 || userData.cooldownItems.Count != 0 || userData.dlcUnlocked) { userData.lastSeenTime = DateTime.Now.ToString("d", CultureInfo.InvariantCulture); } else { data.Remove(player.UserIDString); } } Additionally, I forced saving after adding cooldowns: ins.data[player.UserIDString].cooldownItems[key] = dateEnd; ins.SaveData(); After these changes, cooldowns are correctly stored in the data file and persist after reload/restart. It looks like the issue is purely logical and not config-related. This fix was identified with the help of ChatGPT. Thanks!
  22. I deleted all plugins completely, removed the config, and downloaded a default one — but nothing changed, the issue still persists. I’m attaching a video. Also, something very strange: nothing gets written to the CraftingPanel.json file. To emphasize — I removed all plugins and left only CraftingPanel and ImageLibrary, and still nothing changes. This is being done on a test server. I restarted it several times to clear the cache and so on, but the problem remains exactly the same. 0d48efd3-ddff-4bd5-b6e8-ee9aeb150ad6.mp4
  23. Stormo

    Cargo Convoy Event 1.0.14

    My players are complaining that they can’t complete the event. Also, please add support for rewards such as economy and items, because the event currently has no proper rewards, please.

About Us

Codefling is the largest marketplace for plugins, maps, tools, and more, making it easy for customers to discover new content and for creators to monetize their work.

Downloads
2.4m
Total downloads
Customers
10.9k
Customers served
Files Sold
156.7k
Marketplace sales
Payments
3.4m
Processed total
×
×
  • 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.