Resource icon

Unmaintained ARK Game Testing Commands 2.0

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.
Introduction

This mod facilitates a lot of advanced testing of creatures, bosses, items, caves etc.

Chat
  • /health: Prints a summary report of nearby tamed dinos health status.

Console
  • health: Prints a summary report of nearby tamed dinos health status (via notification).
    Example: Health

  • SpawnTemplate <template key>: Spawn custom templated dinos defined in config.json.
    Example: SpawnTemplate griffin

  • ItemTemplate <template key>: Spawn custom templated items defined in config.json.
    Example: ItemTemplate flak

  • TeleportTo <location key>: Teleport to a custom location defined in config.json.
    Example: TeleportTo redobi

  • ArkGameTestingCommands.ReloadConfig: Reload updated templates and settings from config.json.
    Example: ArkGameTestingCommands.ReloadConfig

Installation
  1. Install ARK Server API (http://arkserverapi.com).
  2. Download and extract ImprovedCommands into ShooterGame\Binaries\Win64\ArkApi\Plugins.
  3. Optionally configure the plugin in config.json.

Configuration

In the configuration file config.json you may do the following
  • Enable/disable individual commands.
  • Change the name of individual commands.
  • Enable/disable the ARK Server API permission system for individual chat commands.

JSON:
{
  "ItemTemplates": {
    "flak": {
      "items": [
        {
          "blueprints": [
              "Blueprint'/Game/PrimalEarth/CoreBlueprints/Items/Armor/Metal/PrimalItemArmor_MetalHelmet.PrimalItemArmor_MetalHelmet'",
              "Blueprint'/Game/PrimalEarth/CoreBlueprints/Items/Armor/Metal/PrimalItemArmor_MetalShirt.PrimalItemArmor_MetalShirt'",
              "Blueprint'/Game/PrimalEarth/CoreBlueprints/Items/Armor/Metal/PrimalItemArmor_MetalGloves.PrimalItemArmor_MetalGloves'",
              "Blueprint'/Game/PrimalEarth/CoreBlueprints/Items/Armor/Metal/PrimalItemArmor_MetalPants.PrimalItemArmor_MetalPants'",
              "Blueprint'/Game/PrimalEarth/CoreBlueprints/Items/Armor/Metal/PrimalItemArmor_MetalBoots.PrimalItemArmor_MetalBoots'"
          ],
          "quality": 10.0
        }
      ]
    }
  },
  "Locations": {
     "redobi": {
         "x": -262528.094,
         "y": 241189.141,
         "z": -11191.670
     }
  },
  "SpawnTemplates": {
    "theriz_boss": {
      "count": 20,
      "radius": 1000.0,
      "blueprint": "Blueprint'/Game/PrimalEarth/Dinos/Therizinosaurus/Therizino_Character_BP.Therizino_Character_BP'",
      "saddleBlueprint": "Blueprint'/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/PrimalItemArmor_TherizinosaurusSaddle.PrimalItemArmor_TherizinosaurusSaddle'",
      "saddleArmor": 100.0,
      "imprint": 1.0,
      "ignoreAllWhistles": false,
      "ignoreAllyLook": false,
      "follow": false,
      "aggressionLevel": "passive",
      "facing": "outwards",
      "baseLevelHealth": 45,
      "baseLevelStamina": 25,
      "baseLevelOxygen": 25,
      "baseLevelFood": 25,
      "baseLevelWeight": 25,
      "baseLevelMeleeDamage": 45,
      "baseLevelMovementSpeed": 25,
      "tamedLevelHealth": 25,
      "tamedLevelStamina": 0,
      "tamedLevelOxygen": 0,
      "tamedLevelFood": 0,
      "tamedLevelWeight": 0,
      "tamedLevelMeleeDamage": 25,
      "tamedLevelMovementSpeed": 0,
      "items": [
        {
          "blueprint": "Blueprint'/Game/PrimalEarth/CoreBlueprints/Items/Consumables/PrimalItemConsumable_SweetVeggieCake.PrimalItemConsumable_SweetVeggieCake'",
          "quantity": 5,
          "count": 10
        }
      ]
    }
  }
}


Spawn template options

Option: aggressionLevel
Values: passive, neutral, aggressive, attackmytarget
Default: passive

Option: facing
Values: forward, outwards, inwards
Default: forward
  • Like
Reactions: shamanbinario
Author
Tobias
Downloads
195
Views
5,207
First release
Last update

Ratings

0.00 star(s) 0 ratings

More resources from Tobias

Back
Top