Jump to content

Tangerine

Creator
  • Posts

    275
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by Tangerine

  1. Version 1.1.1

    181 downloads

    Automated Maps - plugin that allows you fully automate map wipe replacements. Plugin will automatically detect server wipe, get next map from configured maps pool and replace it. What this plugin can do? Create voting polls in using Discord API, so players can choose next map listed in map pool. Announce next map using Discord API. Automatically detect wipe. RustMaps integration, plugin can fill map pool using RustMaps.com API, supports custom map config and other paid subscription features. What is cron expression and how do I use it? A cron expression is a string of characters used to schedule tasks to run at specific times or intervals. It is widely used in Unix-based systems for automating repetitive tasks such as backups, updates, and maintenance. Structure of a Cron Expression Allowed values Allowed special characters Comment ┌───────────── second (optional) 0-59 * , - / │ ┌───────────── minute 0-59 * , - / │ │ ┌───────────── hour 0-23 * , - / │ │ │ ┌───────────── day of month 1-31 * , - / L W ? │ │ │ │ ┌───────────── month 1-12 or JAN-DEC * , - / │ │ │ │ │ ┌───────────── day of week 0-6 or SUN-SAT * , - / # L ? Both 0 and 7 means SUN │ │ │ │ │ │ * * * * * * Special characters which are supported by plugin now * (all): Specifies that the event should happen for every time unit. For example, * in the minute field means "every minute." - (range): Specifies a range of values. For example, 10-12 in the hour field means "10th, 11th, and 12th hours." , (values): Specifies multiple values. For example, 10,12 in the hour field means "10th and 12th hours." / (increments): Specifies incremental values. For example, 5/15 in the minute field means "5, 20, 35, and 50 minutes of an hour." Examples of Cron Expressions 0 12 * * * -> At 12:00 p.m. (noon) every day: 0/15 * * * * -> Every 15 minutes every day 0/5 13,18 * * * -> Every five minutes starting at 1 p.m. and ending at 1:55 p.m., and then starting at 6 p.m. and ending at 6:55 p.m., every day 30 9 * * 1-5 -> At 9:30 a.m. every Monday to Friday 0 0 L * * -> At 00:00 AM on the last day of the month 0 0 L-1 * * -> At 00:00 AM the day before the last day of the month 0 0 3W * * -> At 00:00 AM, on the 3rd weekday of every month 0 0 LW * * -> At 00:00 AM, on the last weekday of the month 0 0 * * 2L -> At 00:00 AM on the last tuesday of the month 0 0 * * 6#3 -> At 00:00 AM on the third Saturday of the month 0 0 ? 1 MON#1 -> At 00:00 AM on the first Monday of the January Detailed definition can be found here: Cronos You can try to use this generator. If you need help with setting up your own wipe schedule don't hesitate to ask for support! You can use plugin support section or DM me in Discord: metangerine. Configuration Language { "Discord_Poll_Title": "Please, choose next wipe map: ", "Discord_Poll_Option": "MAP #{0}", "Discord_Poll_Result_Title": "Vote ended with result: ", "Discord_Poll_MostVoted": "Most voted map", "Discord_Post_Title": "Next wipe map ({0}):", "Discord_Seed": "Seed", "Discord_Size": "Size", "Discord_PreviewLink": "Preview Link", "Discord_MapLink": "[Map Link]({0})" } Commands automaps.postnext - to post map automaps.runvote - to run vote CONTACT Need help or custom plugin for your server? Contact me using Discord: metangerine ----------------------------------------------------------------------
    $19.99
  2. Tangerine

    UItemSort

    I'll add it in config.
  3. Tangerine

    UItemSort

    Depends on your config and needs. Easiest way to get prefab of any item in game, is to spawn/place it and ent kill. Then in console you gonna get full prefab path to it. Then if your config works in whitelist mode, just put that prefab path into prefabs list.
  4. Tangerine

    UItemSort

    Just the way it reads an array. Doesn't really matter. Sorting still needs to go through every item, so doesn't matter in what order you have them. Skins feature: I'll think about it.
  5. Tangerine

    UItemSort

    Yes, it does.
  6. 1) You can set different sentry turret settings and have them as separate turrets. This called profiles. 2) Not sure about selling in vending, but you can try to set proper shortname and skin id. 3) Yes you can have both modes enabled. 4) No you cannot use grenade launcher. Only regular ammo/guns and sam site.
  7. Tangerine

    TurretBox

    Supply box skin is just to mark object. It doesn't work as supply box item atm, but I can add such feature.
  8. Tangerine

    TurretBox

    Plugin will fill turrets faster before they can use everything
  9. Tangerine

    TurretBox

    It fills turret with minimum amount of ammo required. For example, if AK capacity is 30, it will fill turret with 60 bullets for that AK. Also, it will calculate all turrets and all required amounts to spread them evenly, in case if amount of ammo box contains is not enough to fill all the turrets. It works that way, because there's no point to fill turrets with ammo because enemy player can destroy turret and take all that ammo.
  10. Nope, but I can add it in next update.
  11. Thanks for reporting issue, I'll investigate.
  12. Sorry about that. Turrets update is almost done and will be released this month.
  13. Tangerine

    Auto Wipe

    It works with any kind of maps. Check configuration and description of how the system works.
  14. Tangerine

    Auto Wipe

    Version 1.1.6

    298 downloads

    Auto Wipe - This plugin allows to schedule regular wipes, including map, blueprint, and data resets. It offers customizable settings for wipe intervals and automated backups to prevent data loss. This plugin will simplify the maintenance process and reduce administrative workload. What this plugin can do? Create specific wipe schedules for daily, weekly and monthly basis. Wipe oxide(config/data/logs/plugins)/map files. Create backups of data/map files. Send discord wipe message using tool: https://discohook.org/ Do files replacements during wipe. (In case if you want to load new config files for new map) Set own startup ConVars such as 'server.seed', 'server.levelurl'. No additional scripts or harmony mods required, everything plugin based. How it works? When the wipe preset schedule is enabled and matched, the plugin sends a restart command. During server startup, it deletes all configured files before they are loaded by other plugins or the server itself and executes all commands from the preset. It is recommended to have software or a batch file that will automatically start the server after shutdown because the "restart" command only shuts down the server without restarting it. What is cron expression and how do I use it? A cron expression is a string of characters used to schedule tasks to run at specific times or intervals. It is widely used in Unix-based systems for automating repetitive tasks such as backups, updates, and maintenance. Structure of a Cron Expression Allowed values Allowed special characters Comment ┌───────────── second (optional) 0-59 * , - / │ ┌───────────── minute 0-59 * , - / │ │ ┌───────────── hour 0-23 * , - / │ │ │ ┌───────────── day of month 1-31 * , - / L W ? │ │ │ │ ┌───────────── month 1-12 or JAN-DEC * , - / │ │ │ │ │ ┌───────────── day of week 0-6 or SUN-SAT * , - / # L ? Both 0 and 7 means SUN │ │ │ │ │ │ * * * * * * Special characters which are supported by plugin now * (all): Specifies that the event should happen for every time unit. For example, * in the minute field means "every minute." - (range): Specifies a range of values. For example, 10-12 in the hour field means "10th, 11th, and 12th hours." , (values): Specifies multiple values. For example, 10,12 in the hour field means "10th and 12th hours." / (increments): Specifies incremental values. For example, 5/15 in the minute field means "5, 20, 35, and 50 minutes of an hour." Examples of Cron Expressions 0 12 * * * -> At 12:00 p.m. (noon) every day: 0/15 * * * * -> Every 15 minutes every day 0/5 13,18 * * * -> Every five minutes starting at 1 p.m. and ending at 1:55 p.m., and then starting at 6 p.m. and ending at 6:55 p.m., every day 30 9 * * 1-5 -> At 9:30 a.m. every Monday to Friday 0 0 L * * -> At 00:00 AM on the last day of the month 0 0 L-1 * * -> At 00:00 AM the day before the last day of the month 0 0 3W * * -> At 00:00 AM, on the 3rd weekday of every month 0 0 LW * * -> At 00:00 AM, on the last weekday of the month 0 0 * * 2L -> At 00:00 AM on the last tuesday of the month 0 0 * * 6#3 -> At 00:00 AM on the third Saturday of the month 0 0 ? 1 MON#1 -> At 00:00 AM on the first Monday of the January Detailed definition can be found here: Cronos You can try to use this generator. If you need help with setting up your own wipe schedule don't hesitate to ask for support! You can use plugin support section or DM me in Discord: metangerine. CONFIGURATION COMMANDS autowipe.run <preset name> - runs auto wipe preset CONTACTS Need help or custom plugin for your server? Contact me using Discord: metangerine ----------------------------------------------------------------------
    $19.99
  15. Hello there! I made website that will convert your figma files to rust CUI (C# code/JSON). It still in beta testing and might have some bugs, so let me know if you find any, feedback appreciated as well. You can try it out here: Click If you have any questions, feel free to ask here. Video showcase:
  16. Version 1.0.2

    15 downloads

    Planter Box Events - this plugin will add unique farming events to your server. Players will need to keep an eye on their farms so that it doesn't go up in flames or the seedlings aren't destroyed by chickens. If you have idea about other events that could be implemented, let me know in DMs or discussion section. Configuration { "Chicken event properties": { "Damage per second": 1.5, "Chance to start event (range: 0 - 1, -1 to off event)": 0.1 }, "Fire event properties": { "Damage per second": 2.5, "Chance to start event (range: 0 - 1, -1 to off event)": 0.1 }, "Time interval in seconds between each attempt to initialize events": 60.0 } Permissions planterboxevents.use - events will be applied to the owners of planter boxes with this permission. How it works? Contacts Need help or custom plugin for your server? Contact me using Discord: metangerine ----------------------------------------------------------------------
    $15.00
  17. Looks like you have another plugin that tries to patch same method at the same time.
  18. Could you please provide the specifications of your server, i'm interested in mod(oxide,carbon) and its version.
  19. I've checked attachments and it seems to be working fine. Can you contact me in discord to show what happens: metangerine?
  20. It will work on custom map, u just need to have colliders placed correctly. Can you add me in discord so we can talk about this issue? metangerine
  21. Yes, because my plugin adds those green zones, but it detects them from map colliders placed by map editor. If he placed couple of them like that then my plugin will display them in the same way.
  22. My plugin detects safe zones and places shpere on them, issue you have on screenshot is a map issue, not plugin.
  23. Nope, it just adds the UI, so instead of clearing all authed members in TC, you can delete only unwanted one.
  24. Done, checkout the update.

About Us

Codefling is the largest marketplace for plugins, maps, tools, and more, making it easy for customers to discover new content and for creators to monetize their work.

Downloads
2.4m
Total downloads
Customers
10.7k
Customers served
Files Sold
155.3k
Marketplace sales
Payments
3.3m
Processed total
×
×
  • 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.