-
Posts
1,319 -
Joined
Content Type
Profiles
Downloads
Forums
Store
Support
DOWNLOADS EXTRA
Services
Everything posted by Death
-
We're happy to announce our 2nd annual Christmas in July sales event, where you can expect sales on all your favorite Rust plugins, custom maps, and more! Over 900 files are on sale right now at https://codefling.com/deals! Don't miss this opportunity to overhaul your server with new plugins and custom maps! Did you lose your wallet door camping? Well, you might be in luck! We're hosting hundreds of free giveaways on our Discord with new chances to win every day until the end of the event! discord.gg/codefling
- 1 reply
-
- 9
-
-
-
-
This is already a feature. You automatically follow your own support requests or requests you respond to. Make sure your notifications are set up properly for Support Misc https://codefling.com/notifications/options/
-
On line 74: configData.door = door.net.ID; This should be: configData.door = door.net.ID.Value; Also unrelated to your error on line 58: if (!permission.UserHasPermission(player.userID.ToString(), "MyPlugin.admin")) You can avoid the ToString() by simply using: if (!permission.UserHasPermission(player.UserIDString, "MyPlugin.admin")) Also, line 65-66 you don't need to create references for out operators anymore: Door door; if (!DOORLOOC(player, out door)) You can just do: if (!DOORLOOC(player, out var door)) Or: if (!DOORLOOC(player, out Door door)) On line 82-89 you do not need the else return since it's a void and therefore does not return anything. You also have no code after the statement so your return here is redundant. You also need to fix your net.ID to access the value properly as we did above: if (door.net.ID.Value == configData.door) { SendReply(player, "База админа нах пошёл"); } else { return; } It should be: if (door.net.ID.Value == configData.door) { SendReply(player, "База админа нах пошёл"); }
-
Have you by change restarted your client since purchasing these skins?
-
I wouldn't call this a conflict, as Chest Stacks does not intend for your storage containers to be moving. While either plugin could fix this, I wouldn't approach it as a bug but instead as a feature request to have these plugins be compatible. I'll tag the authors to see if they want to achieve such compatibility. @supreme @jtedal
-
- 5 replies
-
- 1
-
-
- #paid plugin
- #uipanel
-
(and 2 more)
Tagged with:
-
I want to remove the service display from my profile.
Death replied to aomuu's topic in Site Support
The service record has been removed from your account.- 1 reply
-
- 1
-
-
Another update has been released to address a few reported issues, such as wishlists displaying an error for users with special characters in their names and wishlists showing duplicate files for some users. We appreciate all the feedback and bug reports as we continue polishing and improving our wishlist system!
-
Interesting
-
@_senyaa
-
You'll need a plugin to set them individually due to the lack of convars, but a simple way to achieve this without one is by changing resource density. This will basically allow more resources to spawn in the same area, thus making them more dense. spawn.max_density <value> (Default: 1) spawn.min_density <value> (Default: 0.5)
-
@Pwenill any update on this?
-
You were given permission to use their logos, right? If not you'll need to remove them from your post.
-
We've released an update to address the issue. I apologize for the delay.
-
I've not forgotten. We're still looking into this!
-
Thanks for reaching out. We'll have a look at this as soon as possible!
-
Absolutely. We're working on Stripe integration and expect it to be ready within the next 2 months.
-
The update is now live! Added Remove button to wishlist page Fixed files in a bundle not being removed from wishlist after purchase Few design tweaks for better visuals
-
Working on this now.
-
The new update, including the above changes, is out now! Feature file orders now show under misc Bundles now show under misc Changing sorting preference no longer reverts tab position Fixed several styling and painting issues
-
Enter to win one of these ready-to-go (including PSDs) server banners and store icon packs for free in #giveaways on our Discord! discord.gg/codefling Here are the links if you are interested: https://codefling.com/graphics/5x-editable-server-banners-thumbnails https://codefling.com/graphics/store-icons-ps
-
We've seen a recent demand for graphics, mostly ready-to-go or editable icons, logos, and headers, to help your server or website stand out. In this new section, you'll find anything graphics related to website templates, icons, logos, headers, emojis, and more! You can find this new section under Tools on our navigation bar or directly from https://codefling.com/graphics. Keep in mind that this section is new, and we're still working on curating more content. If you have content you'd like to share or sell, please have a look at How to Submit a File to get started!
- 2 replies
-
- 10
-
-