Jump to content

bsdinis

Creator
  • Posts

    140
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by bsdinis

  1. Updated
    It is simple to tune cook times per item type and modify resource ratios making it an accessible choice for all kinds of server owners. So far seems like a good solution for controlling my server furnace's smelting without a noticeable impact on performance.
  2. permissions..
  3. bsdinis

    Timed Commands

    It only supports real time, not in-game time.
  4. Added in 0.0.7
  5. bsdinis

    SpawnVehicles

    I didn't say to remove them, all I said is you have hard-coded them in without even checking if they exist in the config file, if an admin adds a new vehicle to the config file how are you going to register its permission? What would happen if you remove any of these 3 Keys from the config ("mini", "scrappy" or "boat") and then reload the plugin?
  6. bsdinis

    SpawnVehicles

    You should also protected override SaveConfig(), or rename the method.
  7. bsdinis

    SpawnVehicles

    You hard-coded the RegisterPermissions at Init() with the Keys from the default config without checking if they actually exist, I'm sure it will throw an error for 'missing Key' if you remove one of them from the config and then reload the plugin.
  8. bsdinis

    Timed Commands

    Yes, any oxide command can be executed now, instead of only loading and unloading plugins. Don't forget to delete the previous plugin before updating, as the file name has changed.
  9. Version 0.0.8

    209 downloads

    Execute console commands daily or weekly at specific times of day, or at specific dates, with optional multiple Discord messages support and configurable server clock offset. Config: { "Offset": "00:00:00:00.0000000", "InitCommands": [ "oxide.unload PluginA", "oxide.unload PluginB" ], "Timers": [ { "Time": "17:00:00", "DayOfWeek": 0, "Commands": [ "oxide.unload PluginC", "oxide.unload PluginD" ], "DiscordMessages": null }, { "Time": "6PM", "DayOfWeek": 6, "Commands": [ "oxide.unload PluginC", "oxide.unload PluginD" ], "DiscordMessages": null }, { "Time": "09/29/2022 19:00:00", "DayOfWeek": null, "Commands": [ "oxide.unload PluginC", "oxide.unload PluginD" ], "DiscordMessages": null }, { "Time": "09/30/2022 8PM", "DayOfWeek": null, "Commands": [ "oxide.load PluginC", "oxide.load PluginD" ], "DiscordMessages": [ { "webhook": "", "username": "My Untitled Rust Server", "avatar_url": "", "content": "```{0}```" } ] } ] } Offset - Amount of time to offset server time from real time, represented by a TimeSpan format string. If your server's clock is 1 day 10 hours 2 minutes 33 seconds and 444.5555 miliseconds ahead use "-01:10:02:33.4445555" If your server's clock is 1 day 10 hours 2 minutes 33 seconds and 444.5555 miliseconds behind use "01:10:02:33.4445555" InitCommands - List of commands to execute when the server starts up or when the plugin is loaded. Timers Time - A time represented by a TImeSpan format string, or a date represented by a DateTime format string. DayOfWeek - A day of the week represented by a DayOfWeek Enum value ranging from 0 (Sunday) to 6 (Saturday). If a value is used the timer will run weekly, else the timer will run daily. Only used by TimeSpan format timers. Commands - List of commands to execute when the timer fires. DiscordMessages - List of Discord messages to send when the timer fires, each with its own webhook. Requires DiscordMessageAPI
    $4.00
  10. bsdinis

    Instant Startup

    the else if on line 24 is unnecessary, as both minicopters and scrap helicopters are MiniCopter type objects.
  11. Version 0.0.9

    640 downloads

    For developers only. SendDiscordMessage(string webhook, string username, string avatarUrl, string content, bool tts, List<List<object>> embeds) Examples: [PluginReference] Plugin DiscordMessageAPI; if (DiscordMessageAPI == null) { return; } DiscordMessageAPI.Call( "SendDiscordMessage", // DiscordMessageAPI hook "https://discord.com/api/webhooks/000000000000000000/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", // Webhook (string) "Username", // Username (string) "", // Avatar URL (string) "Message text content.", // Message content (string) true // Text-to-speech (bool) ); List<List<object>> embeds = new List<List<object>> // Embeds (List<List<object>>) { new List<object> // Embed0 (List<object>) { "Embed0 author name", // Author name (string) "https://facepunch.com/", // Author URL (string) "https://upload.wikimedia.org/wikipedia/commons/thumb/d/d5/Facepunchtransparent.png/440px-Facepunchtransparent.png", // Author icon URL (string) "Embed0 title", // Title (string) "https://rust.facepunch.com/", // URL (string) "Embed0 description", // Description (string) 15548997, // Color (int) new List<List<object>> // Fields (List<List<object>>) { new List<object> // Field0 (List<object>) { "Field0-Embed0 Name", // Name (string) "Field0-Embed0 Value", // Value (string) false // Inline (bool) }, new List<object> // Field1 (List<object>) { "Field1-Embed0 Name", // Name (string) "Field1-Embed0 Value", // Value (string) false // Inline (bool) }, new List<object> // Field2 (List<object>) { "Field2-Embed0 Name", // Name (string) "Field2-Embed0 Value", // Value (string) false // Inline (bool) } }, "https://i.imgur.com/Clv8xfd.png", // Thumbnail URL (string) "https://upload.wikimedia.org/wikipedia/commons/thumb/d/d5/Facepunchtransparent.png/440px-Facepunchtransparent.png", // Image URL (string) "Embed0 footer text", // Footer text (string) "https://upload.wikimedia.org/wikipedia/commons/9/9f/Rust_logo.png" // Footer icon URL (string) }, new List<object> // Embed0 (List<object>) { "Embed1 author name", // Author name (string) "https://rust.facepunch.com/", // Author URL (string) "https://i.imgur.com/Clv8xfd.png", // Author icon URL (string) "Embed1 title", // Title (string) "https://facepunch.com/", // URL (string) "Embed1 description", // Description (string) 5793266, // Color (int) new List<List<object>> // Fields (List<List<object>>) { new List<object> // Field0 (List<object>) { "Field0-Embed1 Name", // Name (string) "Field0-Embed1 Value", // Value (string) false // Inline (bool) }, new List<object> // Field1 (List<object>) { "Field1-Embed1 Name", // Name (string) "Field1-Embed1 Value", // Value (string) false // Inline (bool) }, new List<object> // Field2 (List<object>) { "Field2-Embed1 Name", // Name (string) "Field2-Embed1 Value", // Value (string) false // Inline (bool) } }, "https://upload.wikimedia.org/wikipedia/commons/thumb/d/d5/Facepunchtransparent.png/440px-Facepunchtransparent.png", // Thumbnail URL (string) "https://upload.wikimedia.org/wikipedia/commons/9/9f/Rust_logo.png", // Image URL (string) "Embed1 footer text", // Footer text (string) "https://i.imgur.com/2uEAWXZ.png" // Footer icon URL (string) } }; DiscordMessageAPI.Call( "SendDiscordMessage", // DiscordMessageAPI hook "https://discord.com/api/webhooks/000000000000000000/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", // Webhook (string) "Username", // Username (string) "https://i.imgur.com/y28bSZi.png", // Avatar URL (string) "Message text content.", // Content (string) false, // Text-to-speech (bool) embeds // Embeds (List<List<object>>) );
    Free
  12. bsdinis

    Entity Limit

    You must use the entity's short prefab name, not the item's shortname.
  13. This plugin should be pretty lightweight.
  14. that one does not limit the total amount of active supply signals on the server, it only adds a per player cooldown.
  15. Is there a free version of this plugin? I looked everywhere and I couldn't find it.
  16. Version 0.0.6

    519 downloads

    Limits the amount of active Supply Signals on the server. Prevents players from calling an Airdrop if the amount of deployed Supply Signals, or the amount of spawned Cargo Planes or the amount of Supply Drops with a parachute still attached is over the limit defined in the config. Config: { "Max": 10, "BypassPermission": "supplysignallimit.bypass" } Lang: { "Limit": "There can only be {0} active Supply Signals at any time, please wait a few seconds." }
    $3.00
  17. bsdinis

    Entity Limit

    Check your permissions. For testing, I have set the limit for foundation to 10 for default group and 20 for VIP group: without vip permission: with vip permission:
  18. {deleted}
  19. tangerine is gone
2.3m

Downloads

Total number of downloads.

10.5k

Customers

Total customers served.

151.8k

Files Sold

Total number of files sold.

3.2m

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.