-
Posts
282 -
Joined
-
Last visited
-
Days Won
1
Content Type
Profiles
Warranty Claims
Downloads
Forums
Store
Services
Downloads Plus Support
DOWNLOADS EXTRA
Everything posted by Stormo
-
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
-
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.
-
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?
-
- 25 comments
-
- 1
-
-
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?
-
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.
- 1 reply
-
- 1
-
-
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?
-
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.
-
- 205 comments
-
- 1
-
-
- #items
- #enhancement
-
(and 6 more)
Tagged with:
-
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!
-
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
-
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.
-
Custom items from this plugin: https://codefling.com/plugins/custom-item-manager
-
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.
-
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
-
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.
-
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.
-
/deepsea dedupe Okay, we’ll wait. By the way, the command /deepsea dedupe says that such a command does not exist.
-
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