Jump to content

Jedchado's Wishlist

  1. More information about "Home Alone"

    $3.99 $2.95

    Home Alone

    Multi leveled floors with red card room and lots of loot each level, NO NPC's added ,you can add yourself.
    This is a great prefab to add to your server for the Holiday Season that the players will love looting!

    Recycler x 1 located in Basement
    Entity count: 2664
    Monument originally created by Morgana and maintained by me since 2022.
     
  2. More information about "Ravaged Lighthouse"

    $3.00 $2.22

    Ravaged Lighthouse

    A broken custom lighthouse with a apocalyptic themed reconstruction and additions .
    Being a broken monument and has nothing to do with procedural Lighthouse it may not work with plugins that use procedural monuments !
    It has no masks   it's just simple drag and drop !
    Entity Count : 204  
  3. More information about "Better No Workbench"

    $2.99

    Better No Workbench

    Better No Workbench - Rust Plugin
    A plugin for Rust that gives workbench access to players with permission. Unlike the free version you can refill items and it also displays the workbench UI in the bottom right.
    Permission:
    Give players so they get workbench access:  BetterNoWorkbench.on
    Config:
    { "Default Workbench Level": 3.0 }
  4. More information about "Supermarket Event"

    $20.00

    Supermarket Event

    A new event that takes place at the Supermarket monument, made for beginners on your server
     
     

     
    Description
    The event begins with a message in the chat that soon a merchant who sells valuable cargo will arrive at a Supermarket on your island. The merchant and their guards with trained dogs appear around the supermarket.
    Players then have the opportunity to rob the Merchant in order to get all the Supermarket loot for themselves. As soon as the players begin to attack the Merchant, an armored helicopter arrives there with additional security and a Debt Collector. The Debt Collector enters the Supermarket and begins the process of collecting his loot and the Merchant for evacuation. If the player manages to kill all the guards outside the supermarket before the end of this process, then he can enter and loot.
    There are several more guards, the Merchant and the Debt Collector waiting for the player. The Merchant and the Debt Collector need to be eliminated to get the most valuable loot that they wanted to evacuate. There are also several loot crates inside the Supermarket to be looted. If the Merchant and or the Debt Collector survive, they will fly away in the armored helicopter and the player will not receive the juicy loot they were dealing.
    In the plugin configuration, it is possible to configure all timers, the guards outside the supermarket, inside the Supermarket, Debt Collector guards, and guard dogs patrolling outside the Supermarket. The Merchant and Debt Collector can also be configured as well. A list of all the loot crates inside the supermarket, map marker, event icons on the players screen, and more are all able to be adjusted in the config file.
     
    Dependencies (optional, not required)
    True PVE PveMode GUI Announcements Notify Discord Messages AlphaLoot CustomLoot NTeleportation Economics Server Rewards IQEconomic XPerience Kits Better Npc Monument Owner  
    Chat commands (only for administrators)
    /supermarketstart - start the event
    /supermarketstop - end the event
     
    Console commands (RCON only)
    supermarketstart - start the event
    supermarketstop - end the event
     
    Plugin Config
    en - example of plugin configuration in English ru - example of plugin configuration in Russian  
    Hooks
    void OnSupermarketEventStart(Vector3 pos, float radius) – called when the event starts
    void OnSupermarketEventEnd() – called when the event ends
    void OnSupermarketEventWinner(ulong winnerId)  – called at the end of the event, where the  winnerId  is the player who did more actions to complete the event
     
    My  Discord:  kpuctajl
    Join the Mad Mappers Discord  here!
    Check out more of my work  here!
  5. More information about "Auto Wipe"

    $19.99

    Auto Wipe

    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
    ----------------------------------------------------------------------
1.8m

Downloads

Total number of downloads.

8.4k

Customers

Total customers served.

127k

Files Sold

Total number of files sold.

2.6m

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.