Ark:Донат-Магазин/Пример custom.json (все виды товаров)

Материал из SurvivalHost Wiki
Версия от 21:00, 22 октября 2019; VorteX (обсуждение | вклад)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к навигации Перейти к поиску

Пример custom.json (все виды товаров)
<< Ark:Донат-Магазин | К концу статьи | Короткая ссылка

Пример конфигурационного файл с кастомными предметами всех видов.

(Папка с Ark)/Saved/Config/Plugins/SurvivalShop/custom.json

{
 "Прокачка персонажа или дино": {
   "type": "experience",
   "amount": 1000000000
 },
 "На печеньки админам": {
   "type": "message",
   "webHook": "hook1",
   "webHookMessage": "Сервер %serverInfo%, %playerInfo% дал не печеньки.",
   "message": "Спасибо за поддержку сервера!"
 },
 "На печеньки админам 2": {
   "type": "message",
   "webHook": "hook1",
   "webHookMessage": "Сервер %serverInfo%, выживший %characterName% трайб %tribeName% - %steamName% (id %steamId%) дал не печеньки.",
   "message": "Спасибо за поддержку сервера!"
 },
 "Белый луч": {
   "type": "summon",
   "className": "SupplyCrate_Level03_C"
 },
 "Предмет": {
   "type": "item",
   "stackSize": 200,
   "count": 400,
   "quality": 1,
   "blueprint": "Blueprint'/Game/PrimalEarth/CoreBlueprints/Resources/PrimalItemResource_MetalIngot.PrimalItemResource_MetalIngot'"
 },
 "Чертёж": {
   "type": "blueprint",
   "quality": 10,
   "blueprint": "Blueprint'/Game/PrimalEarth/CoreBlueprints/Weapons/PrimalItem_TekRifle.PrimalItem_TekRifle'"
 },
 "Энграмма": {
   "type": "engram",
   "blueprint": "Blueprint'/Game/PrimalEarth/CoreBlueprints/Weapons/PrimalItem_TekRifle.PrimalItem_TekRifle'"
 },
 "Дино": {
   "type": "dino",
   "level": 400,
   "neutered": true,
   "gender": 1,
   "imprint": true,
   "experience": 5000,
   "age": 1.0,
   "wild": false,
   "blueprint": "Blueprint'/Game/PrimalEarth/Dinos/Raptor/BionicRaptor_Character_BP.BionicRaptor_Character_BP'"
 },
 "Пак": {
   "type": "pack",
   "items": [
     {
       "type": "summon",
       "className": "SupplyCrate_Level03_C"
     },
     {
       "type": "item",
       "stackSize": 200,
       "count": 400,
       "quality": 1,
       "blueprint": "Blueprint'/Game/PrimalEarth/CoreBlueprints/Resources/PrimalItemResource_MetalIngot.PrimalItemResource_MetalIngot'"
     }
   ]
 },
 "Право покраски дино на 3 дня": {
   "type": "dinocolor",
   "minutes": 0,
   "hours": 0,
   "days": 3,
   "infinite": false
 },
 "Дино с правом покраски 2 часа": {
   "type": "dino",
   "level": 400,
   "neutered": true,
   "gender": 1,
   "imprint": true,
   "experience": 5000,
   "age": 1.0,
   "wild": false,
   "dcMinutes": 0,
   "dcHours": 2,
   "dcDays": 0,
   "dcInfinite": false,
   "blueprint": "Blueprint'/Game/PrimalEarth/Dinos/Raptor/BionicRaptor_Character_BP.BionicRaptor_Character_BP'"
 },
 "Дино 100 лвл М + Ж":{ 
   "type":"pack",
   "items":[ 
     { 
       "type":"dino",
       "level":100,
       "neutered":false,
       "gender":1,
       "imprint":true,
       "experience":5000,
       "age":1.0,
       "wild":false,
       "blueprint":"Blueprint'/Game/PrimalEarth/Dinos/Raptor/Raptor_Character_BP.Raptor_Character_BP'"
     },
     { 
       "type":"dino",
       "level":100,
       "neutered":false,
       "gender":2,
       "imprint":true,
       "experience":5000,
       "age":1.0,
       "wild":false,
       "blueprint":"Blueprint'/Game/PrimalEarth/Dinos/Raptor/Raptor_Character_BP.Raptor_Character_BP'"
     }
   ]
 },
 "Добавление в группу Premium": {
   "type": "permissions",
   "do": "add",
   "group": "Premium"
 },
 "Удаление из группы Premium": {
   "type": "permissions",
   "do": "remove",
   "group": "Premium"
 },
 "Добавление в группу Premium на 1 минуту": {
   "type": "permissions",
   "do": "add",
   "group": "Premium",
   "minutes": 1,
   "hours": 0,
   "days": 0
 }
}

Ссылки



<< Ark:Донат-Магазин | К началу статьи