-
Posts
1,253 -
Joined
-
Last visited
Content Type
Profiles
Downloads
Forums
Store
Support
DOWNLOADS EXTRA
Services
Everything posted by Death
-
do you guys get off your ass ever an help anyone:??????
Death replied to StonerJedi's question in Support
-
You cannot close your own support request. Please indicate in your request that the issue is solved, and the author will close it at their discretion.
-
There's really no timeframe at the moment, and as the orange message says in your screenshot, we send them in the order received. Right now, the average wait is about 24 hours, but that's not guaranteed.
-
Please submit a support request here: https://codefling.com/plugins/sputnik?tab=support
-
Be sure to check out https://codefling.com/services/ and filter by plugin development. Some very talented users are available and for hire!
-
The error is because you're setting your customurl to a local file when it requires a FQDN. You'll need to upload the map to dropbox, or a similar file sharing service and use that URL for customurl instead.
- 1 reply
-
- 1
-
-
If you haven't already, have a look at https://codefling.com/services and choose plugin development or general programming to filter providers based on your needs!
-
Refund has been issued @tangle996
-
That screenshot doesn't really provide anything useful. Could you provide the server log?
-
Of course. All you need to do is rename your .sav file to match the new name of your .map. Keep in mind that you cannot add any deployables to a map without having to wipe.
-
It is not quite what you're looking for, but it certainly can be modified to be used as an event island: Here's a filtered search if you want to browse the others: https://codefling.com/search/?&q=islands&type=downloads_file&quick=1&nodes=8,7&search_and_or=or&sortby=relevancy
- 1 reply
-
- 1
-
-
Due to a massive influx in submissions, average approval times are longer than expected. We usually try to get files approved within 24 hours, but please bear with us as our team works around the clock to address the pending file queue. Thank you!
-
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
-
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. -
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