Jump to content

Death

Administrator
  • Posts

    1,255
  • Joined

  • Last visited

Everything posted by Death

  1. Uploading a new version while awaiting approval will not change your position in the queue.
  2. The autofill goes by your Codefling email. You can change this to autofill it into your PayPal email for added convenience. Otherwise, I recommend setting up auto-withdrawal and configuring the email address there.
  3. Death

    Not showing in loot

    @The_Kiiiing
  4. 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.
  5. 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.
  6. Please submit a support request here: https://codefling.com/plugins/sputnik?tab=support
  7. Death

    Custom plugins

    Be sure to check out https://codefling.com/services/ and filter by plugin development. Some very talented users are available and for hire!
  8. Death

    Help Custom map

    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.
  9. 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!
  10. Refund has been issued @tangle996
  11. Death

    server closed

    That screenshot doesn't really provide anything useful. Could you provide the server log?
  12. Death

    custom map

    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.
  13. Death

    Island Prefab

    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
  14. Death

    Broken on Carbon?

    @Yun
  15. 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!
  16. Death

    WPKITS

    @David
    This completely changes Rust's look and feel, and I completely dig it. We've run this map several times over the past few years, and players look forward to it every time!
  17. 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
  18. 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/
  19. 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, "База админа нах пошёл"); }
  20. Death

    Upgrades Locked??

    Have you by change restarted your client since purchasing these skins?
  21. 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
  22. The service record has been removed from your account.
1.6m

Downloads

Total number of downloads.

7.7k

Customers

Total customers served.

115.3k

Files Sold

Total number of files sold.

2.3m

Payments Processed

Total payments processed.

×
×
  • 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.