Jump to content

Stormo

Creator
  • Posts

    282
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Stormo

  1. 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
  2. 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.
  3. 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!
  4. 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?
  5. 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.
  6. 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?
  7. 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.
  8. Stormo

    Item Perks

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

    Refund

    “Okay, we’ll wait, that’s life. I just thought you wouldn’t fix it anymore.
  10. 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?
  11. 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.
  12. 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!
  13. 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
  14. 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.
  15. Stormo

    Cargo Convoy Event 1.0.14

  16. Custom items from this plugin: https://codefling.com/plugins/custom-item-manager
  17. Yeah, I have an error too, but the plugin works. I just have 3 servers, so I got a bit mixed up with the console.
  18. Everything runs without errors.
  19. Got it. Could you tell me which plugin this might be related to or what could be causing this in general? Maybe I misconfigured something in the config — it just happens on all items in the panel. CraftingPanel.json
  20. Stormo

    Problems with duplication

    Please tell me how to disable this plugin so that everything works like vanilla until the issue is fixed. Because I disabled the plugin, but the timer and the deep sea still remained unchanged. Only the items started stacking in very large amounts, and if this isn’t fixed now, it will simply kill the server with loot.
  21. Stormo

    Problems with duplication

    My moderator found where so many resources spawn on the ship — it turned out to be in a crate on the ship. But I suspect a plugin like LootMultiplier — it didn’t have the prefab codelockedhackablecrate_ghostship configured, so it might have bugged because of that, or maybe due to duplicates, but the numbers were really huge.
  22. Stormo

    Problems with duplication

    /deepsea dedupe Okay, we’ll wait. By the way, the command /deepsea dedupe says that such a command does not exist.
  23. Stormo

    Problems with duplication

    Good day — or maybe not so good The duplication issues with sulfur, HQM, and crude oil barrels have started again. Now it’s also happening on ghost ships at sea — crates are spawning inside other crates. That’s already bad, but something else worried me even more. A player of mine, on the lower deck of a ship, found items like these in a crate — all in a single stack with such huge amounts. That’s a very serious problem. I checked other ships and didn’t find anything like this. Is there any way to fix this? Maybe I configured something incorrectly — I’m attaching the config. Also, another thing that concerns me is that since installing the plugin, crates have not spawned on ships even once. For context, the sea on my server is open continuously for 14 days, after which there is a technical wipe with a map change. DeepSeaOptions.json

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.5m
Total downloads
Customers
11.1k
Customers served
Files Sold
159k
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.