Advanced Kits adds commands, experience, Ascension and beacons to your ArkShop Kits.
Instructions:
Commands:
Examples:
Dependencies:
Installation:
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"