Advanced Kits

Unmaintained Advanced Kits 1.2a

No permission to download

Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!
The "Unmaintained" prefix is a technical term often used in the development world to signal that a specific piece of code, feature, or a resource is no longer actively managed or updated by its creators. It's similar to a 'Beware' sign on a physical property, warning visitors to proceed with caution.

For instance, if a developer creates a resource for other users to use, but later decides not to continue updating it due to various reasons like time constraints or shifting focus to other projects, they might attach an 'unmaintained' tag to it. This tag serves as a clear indication to other users that while they can still use this resource, they should be aware that it may not be up-to-date with the latest coding standards or security updates.

From a user perspective, an 'unmaintained' tag can help yourself identify resources that may not provide the best experience or security. It signals that the resource in question may have outdated features, potential security vulnerabilities, or bugs that are unlikely to be fixed.
Advanced Kits adds commands, experience, Ascension and beacons to your ArkShop Kits.

Instructions:
This is intended to be used inside of the ArkShop Kit config settings, therefore you must use ArkShop to use this plugin. To use, create an entry in the "Items" section of your kit. Following the examples below, set "Blueprint" to "$advkits <type> <arguments>" along with the appropriate arguments.

Commands:
Use these inside of your Items section:
$advkits cmd `<Command>` - Runs a command. Use {steamid} for SteamID, and make sure to include the ` around your command.​
$advkits exp <Amount> - Adds experience points​
$advkits beacon <ClassName> - Spawns the specified beacon​
$advkits playercmd `<Command>` - Same as "PlayerCommand" console command. Only used for Ascension as far as I know. Case sensitive just like the actual command - See the example.​
$advkits box <BoxName> <Amount> - Awards a lootbox if you use LootBoxes Plus​

Examples:
Code:
  "Kits": {
    "cmdkit": {
      "DefaultAmount": 0,
      "Price": 100,
      "Description": "Example command kit",
      "OnlyFromSpawn": false,
      "Items": [
        {
          "Amount": 1,             //
          "Quality": 0,            // these 3 need to be here, but their values don't matter
          "ForceBlueprint": false, //
          "Blueprint": "$advkits cmd `changekitamount {steamid} cmdkit 1`"
        }
      ]
    },
    "expkit": {
      "DefaultAmount": 0,
      "Price": 100,
      "Description": "Example exp kit",
      "OnlyFromSpawn": false,
      "Items": [
        {
          "Amount": 1,
          "Quality": 0,
          "ForceBlueprint": false,
          "Blueprint": "$advkits exp 1000"
        }
      ]
    },
    "beaconkit": {
      "DefaultAmount": 0,
      "Price": 100,
      "Description": "Example beacon kit",
      "OnlyFromSpawn": false,
      "Items": [
        {
          "Amount": 1,
          "Quality": 0,
          "ForceBlueprint": false,
          "Blueprint": "$advkits beacon SupplyCrate_Level03_C"
        }
      ]
    },
    "ascend1kit": {
      "DefaultAmount": 5,
      "Price": 100,
      "Description": "Example Gamma Ascension kit",
      "OnlyFromSpawn": false,
      "Items": [
        {
          "Amount": 1,
          "Quality": 0,
          "ForceBlueprint": false,
          "Blueprint": "$advkits playercmd `Ascend1`"
        }
      ]
    },
    "lootboxkit": {
      "DefaultAmount": 5,
      "Price": 100,
      "Description": "Example LootBoxesPlus box in a kit ;)",
      "OnlyFromSpawn": false,
      "Items": [
        {
          "Amount": 1,
          "Quality": 0,
          "ForceBlueprint": false,
          "Blueprint": "$advkits box Silver 1" // yes, i included a shortcut for this
        }
      ]
    }
  },

Dependencies:

Installation:
1. Install ARK: Server API​
2. Install the ArkShop plugin​
3. Copy the AdvancedKits folder from .zip to "ArkApi/Plugins"​
  • Like
Reactions: Guillermo Juica
Author
Haragon
Downloads
721
Views
10,486
First release
Last update

Ratings

0.00 star(s) 0 ratings

More resources from Haragon

Latest updates

  1. Advanced Kits V1.2

    Added "playercmd" option for Ascension. Example: "Blueprint": "$advkits playercmd `Ascend1`"
  2. Advanced Kits V1.1

    Fixed command logging to chat for cmds
Back
Top