Ark: Survival Evolved - ArkShop

[Official] Ark: Survival Evolved - ArkShop 3.02

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!
This is used for the official forum announcements from the staff team.
When I enter the command to change the number of points in the console, the game has no reaction.
 
How to increase the number of times you get a kit,,,,i need help
 
Hello I modified as Mark the kit (starter & bass) Also walks the dinos. when I type / Buy ingots his walk but not / Buy poly because his crash I'm ejecting from the server
 
When I enter the command to change the number of points in the console, the game has no reaction.
Ensure you are logged in as admin and execute the command with cheat before. Example:
admincheat ResetKits

And about to change the amount of "free" kits you want to give to someone. You need to change the config file that's included and look for the kit and change the "DefaultAmount"

Hello I modified as Mark the kit (starter & bass) Also walks the dinos. when I type / Buy ingots his walk but not / Buy poly because his crash I'm ejecting from the server
According to your config, it looks like you are using an old version. Are you using the latest version of the ArkShop ?
Ensure you are using the newest Arkshop + API and download and copy the "Messages" section from the latest Arkshop config.
And also, if you are using a stackmod I'll recommend you to use the stackmods blueprint paths otherwise 10k Polymer won't work with vanilla paths.
 
Hello, yes it's 2.5 so my file is not good? because I picked up this line on various file find here
 
I just changed the links for the mods But it still does not work I'm ejecting from the server the kit share against market ....



09/01/18 12:24 [info] Venum(76561198046218817) used kit "Starter"
09/01/18 12:24 [info] Venum(76561198046218817) used kit "Basse"
09/01/18 12:26 [info] Venum(76561198046218817) used kit "ptera"
 
First of all:
Permissions.AddGroup vip
Permissions.Grant vip vip

For every player:
Permissions.Add SteamID vip

Then in shop config at kits would be like:
"vip":{
"DefaultAmount":1,
"Description":"Vip kit for premiums (ptero)",
"Permissions":"vip",
"Dinos":[
{
"Level":20,
"Neutered":true, // Is dino neutered
"Blueprint":"Blueprint'/Game/PrimalEarth/Dinos/Ptero/Ptero_Character_BP.Ptero_Character_BP'"
}
]
},

Permissions.Add SteamID vip
Where do I add this?
In the config file? If so, which line?
Create a better example if you can please
 
can someone check this code for me , seems to be breaking the plugin but cant find where error is.
https://pastebin.com/PqqbLzJM
And the rest of the config?
{
"General":{
"TimedPointsReward":{
"Enabled":true, // Can be true or false.
"Interval":5, // Interval in minutes.
"Groups":{ // Amount of points given can be configured per group. Groups can be changed.
"Default":{ // Default group. Can't be removed.
"Amount":5 // Amount of points to give. Currently it means: 'give 5 points for every 5 minutes spent online'.
},
"Premiums":{
"Amount":15 // Players in group Premiums receives 15 points instead.
}
}
},
"ItemsPerPage":15, // Amount of entries per page (for /shop command).
"ShopDisplayTime":15.0, // Shop display time in seconds.
"ShopTextSize":1.3, // Shop text size.
"DbPathOverride":"", // Path to database, if 2 or more servers point to the one database, they will share points/kits amount.
// If empty, default path is used.
"DefaultKit":"vip,starter" // Kits that will be automatically given to players on spawn.
Separated by comma, no whitespace needed. Kits will be attempted to be given in the order. So first one is highest priority for trying.
In the example above on player respawn an attempt will be made to give the player 'vip' kit, if not then 'starter'..
},
"Kits":{
"starter":{ // Name (ID) of the kit.
// Starter kit example. This kit can be used by everyone. Kit gives dinos and items.
"DefaultAmount":2, // Amount of free kits.
"Price":90, // Allows players to buy additional kits. If you remove price, players won't be able to buy it.
"Description":"Starter kit (carno with saddle)", // Description of the kit.
"OnlyFromSpawn":true, // Players can receive this kit only on spawn
"Items":[ // List of items in kit, you can add as many as you want.
{
"Amount":1,
"Quality":0,
"ForceBlueprint":false,
"Blueprint":"Blueprint'/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/PrimalItemArmor_CarnoSaddle.PrimalItemArmor_CarnoSaddle'"
}
],
"Dinos":[ // Can be empty if you don't want to add dinos.
{
"Level":10,
"Blueprint":"Blueprint'/Game/PrimalEarth/Dinos/Carno/Carno_Character_BP.Carno_Character_BP'"
}
]
},
"vip":{ // Vip kit example. Only specific groups of players are allowed to use it. This kit gives only dinos.
"DefaultAmount":1,
"Description":"Vip kit for premiums (ptero)",
"Permissions":"Admins,Premiums", // Groups which can use this kit. Remove this option to make kit usable by everyone.
"Dinos":[
{
"Level":20,
"Neutered":true, // Is dino neutered
"Blueprint":"Blueprint'/Game/PrimalEarth/Dinos/Ptero/Ptero_Character_BP.Ptero_Character_BP'"
}
]
},
"tools":{ // Kit gives only items.
"DefaultAmount":3,
"Price":50,
"MinLevel":1, // Minimum player level required to use this kit
"MaxLevel":20, // Maximum possible level needed to use this kit
"Description":"Tools kit (pike and club)",
"Items":[
{
"Amount":1,
"Quality":0,
"ForceBlueprint":false,
"Blueprint":"Blueprint'/Game/PrimalEarth/CoreBlueprints/Weapons/PrimalItem_WeaponPike.PrimalItem_WeaponPike'"
},
{
"Amount":1,
"Quality":0,
"ForceBlueprint":false,
"Blueprint":"Blueprint'/Game/PrimalEarth/CoreBlueprints/Weapons/PrimalItem_WeaponStoneClub.PrimalItem_WeaponStoneClub'"
}
]
}
},
"ShopItems":{
"ingots100":{ // Item ID, it should not contain white spaces.
"Type":"item", // Type of the item, can be "item", "dino","beacon" or experience
"Description":"Metal Ingot (100x)", // Description for the /shop command
"Price":15,
"Items":[ // List of items, works the same way as in kits. But only items are allowed here.
{
"Quality":0,
"ForceBlueprint":false,
"Amount":100,
"Blueprint":"Blueprint'/Game/PrimalEarth/CoreBlueprints/Resources/PrimalItemResource_MetalIngot.PrimalItemResource_MetalIngot'"
}
]
},
"tools":{
"Type":"item",
"Description":"Tools (Metal Hatchet, Metal Pick)",
"Price":5,
"Items":[
{
"Quality":0,
"ForceBlueprint":false,
"Amount":1,
"Blueprint":"Blueprint'/Game/PrimalEarth/CoreBlueprints/Weapons/PrimalItem_WeaponMetalHatchet.PrimalItem_WeaponMetalHatchet'"
},
{
"Quality":0,
"ForceBlueprint":false,
"Amount":1,
"Blueprint":"Blueprint'/Game/PrimalEarth/CoreBlueprints/Weapons/PrimalItem_WeaponMetalPick.PrimalItem_WeaponMetalPick'"
}
]
},
"para":{ // Dino
"Type":"dino",
"Description":"Parasaurolophus",
"Level":10,
"Price":20,
"MinLevel":10,
"MaxLevel":15,
"Blueprint":"Blueprint'/Game/PrimalEarth/Dinos/Para/Para_Character_BP.Para_Character_BP'"
},
"carno":{
"Type":"dino",
"Description":"Carnotaurus",
"Level":15,
"Price":50,
"Neutered":true,
"Blueprint":"Blueprint'/Game/PrimalEarth/Dinos/Carno/Carno_Character_BP.Carno_Character_BP'"
},
"crate25":{ // Beacon
"Type":"beacon",
"Description":"SupplyCrate Lvl 25",
"Price":100,
"ClassName":"SupplyCrate_Level25_Double_C"
},
"crate2":{
"Type":"beacon",
"Description":"Artifact Crate 2",
"Price":100,
"ClassName":"ArtifactCrate_2_C"
},
"exp1000":{ // Experience
"Type":"experience",
"Description":"1000 points of experience",
"GiveToDino":false, // Can player buy it while riding a dino. If true, experience points can be applied to the dino.
"Price":55,
"Amount":1000.0
},
"tekengram":{ // Engram
"Type":"unlockengram",
"Description":"Engram TEK Boots & Gloves",
"Price":20,
"Items":[
{

"Blueprint":"Blueprint'/Game/PrimalEarth/CoreBlueprints/Items/Armor/TEK/PrimalItemArmor_TekBoots.PrimalItemArmor_TekBoots'"
},
{
"Blueprint":"Blueprint'/Game/PrimalEarth/CoreBlueprints/Items/Armor/TEK/PrimalItemArmor_TekGloves.PrimalItemArmor_TekGloves'"
}
]
},
"allengrams":{ // Cheat command
"Type":"command",
"Description":"All engrams",
"Price":1000,
"Items":[
{
"Command":"GiveEngrams"
}
]
}
},
"SellItems":{ // Items available for selling. If you use stacks mod, you need to set blueprints from the mod!
"metal":{
"Type":"item", // Only 'item' can be used for now
"Description":"100x metal",
"Price":10, // Amount of points that player will receive for selling this item
"Amount":100, // Required quantity
"Blueprint":"Blueprint'/Game/PrimalEarth/CoreBlueprints/Resources/PrimalItemResource_Metal.PrimalItemResource_Metal'"
}
}
}

For example, what about:
{
"General":{
"TimedPointsReward":{
"Enabled":true, // Can be true or false.
"Interval":5, // Interval in minutes.
"Groups":{ // Amount of points given can be configured per group. Groups can be changed.
"Default":{ // Default group. Can't be removed.
"Amount":5 // Amount of points to give. Currently it means: 'give 5 points for every 5 minutes spent online'.
},
"Premiums":{
"Amount":15 // Players in group Premiums receives 15 points instead.
}
}
},
"ItemsPerPage":15, // Amount of entries per page (for /shop command).
"ShopDisplayTime":15.0, // Shop display time in seconds.
"ShopTextSize":1.3, // Shop text size.
"DbPathOverride":"", // Path to database, if 2 or more servers point to the one database, they will share points/kits amount.
// If empty, default path is used.
"DefaultKit":"vip,starter" // Kits that will be automatically given to players on spawn.
Separated by comma, no whitespace needed. Kits will be attempted to be given in the order. So first one is highest priority for trying.
In the example above on player respawn an attempt will be made to give the player 'vip' kit, if not then 'starter'..
},
 
[QUOTE = "Faka, post: 4918, membro: 92"] No console do jogo (admin) (ou RCON). [/ QUOTE]
Só mais uma dúvida, como removo os Vips? E eu posso adicionar a construção sem colisão apenas pra vip?
 
I'm trying this for the first time and have some errors after I have made changes to the top two kits for testing.. Getting error parse error at 775: syntax error - unexpected '}'; expected ':' 09/06/18 20:31 [API][warning] Failed to load plugin - ArkShop Error code: 1114.. My config below.


JSON:
{ 
  "General":{ 
    "TimedPointsReward":{ 
      "Enabled":true,
      "Interval":60,
      "Groups":{ 
        "Default":{ 
          "Amount":5
        },
        "Premiums":{ 
          "Amount":30
        }
      }
    },
    "ItemsPerPage":15,
    "ShopDisplayTime":30.0,
    "ShopTextSize":1.3,
    "DbPathOverride":"",
    "DefaultKit":"starter,ptero"
  },
  "Kits":{ 
    "starter":{ 
      "DefaultAmount":4,
      "Price":0,
      "Description":"Starter kit (Tools and leather)",
      "OnlyFromSpawn":false,
      "Items":[ 
        { 
          "Amount":1,
          "Quality":5,
          "ForceBlueprint":false,
          "Blueprint'/Game/PrimalEarth/CoreBlueprints/Items/Armor/Leather/PrimalItemArmor_HideBoots.PrimalItemArmor_HideBoots'"
        },
        { 
          "Amount":1,
          "Quality":5,
          "ForceBlueprint":false,
          "Blueprint'/Game/PrimalEarth/CoreBlueprints/Items/Armor/Leather/PrimalItemArmor_HideGloves.PrimalItemArmor_HideGloves'"
        },
        { 
          "Amount":1,
          "Quality":5,
          "ForceBlueprint":false,
          "Blueprint'/Game/PrimalEarth/CoreBlueprints/Items/Armor/Leather/PrimalItemArmor_HideHelmet.PrimalItemArmor_HideHelmet'"
        },
        { 
          "Amount":1,
          "Quality":5,
          "ForceBlueprint":false,
          "Blueprint'/Game/PrimalEarth/CoreBlueprints/Items/Armor/Leather/PrimalItemArmor_HidePants.PrimalItemArmor_HidePants'"
        },
        { 
          "Amount":1,
          "Quality":5,
          "ForceBlueprint":false,
          "Blueprint'/Game/PrimalEarth/CoreBlueprints/Items/Armor/Leather/PrimalItemArmor_HideShirt.PrimalItemArmor_HideShirt'"
        },
        { 
          "Amount":1,
          "Quality":5,
          "ForceBlueprint":false,
          "Blueprint'/Game/PrimalEarth/CoreBlueprints/Items/Structures/Misc/PrimalItemStructure_SleepingBag_Hide.PrimalItemStructure_SleepingBag_Hide'"
        },
        { 
          "Amount":1,
          "Quality":20,
          "ForceBlueprint":false,
          "Blueprint'/Game/PrimalEarth/CoreBlueprints/Weapons/PrimalItem_WeaponStonePick.PrimalItem_WeaponStonePick'"
        },
        { 
          "Amount":1,
          "Quality":20,
          "ForceBlueprint":false,
          "Blueprint'/Game/PrimalEarth/CoreBlueprints/Weapons/PrimalItem_WeaponStoneHatchet.PrimalItem_WeaponStoneHatchet'"
        }
      ]
    },
    "ptero":{ 
      "DefaultAmount":2,
      "Price":15,
      "Description":"ptero and saddle",
      "Dinos":[ 
        { 
          "Level":150,
          "Neutered":true,
          "Blueprint":"Blueprint'/Game/PrimalEarth/Dinos/Ptero/Ptero_Character_BP.Ptero_Character_BP'"
        }
      ],
      "Items":[ 
        { 
          "Amount":1,
          "Quality":40,
          "ForceBlueprint":false,
          "Blueprint'/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/PrimalItemArmor_PteroSaddle.PrimalItemArmor_PteroSaddle'"
        }
      ]
    },
    "tools":{ 
      "DefaultAmount":3,
      "Price":50,
      "MinLevel":1,
      "MaxLevel":20,
      "Description":"Tools kit (pike and club)",
      "Permissions":"Admins,Premiums",
      "Items":[ 
        { 
          "Amount":1,
          "Quality":0,
          "ForceBlueprint":false,
          "Blueprint":"Blueprint'/Game/PrimalEarth/CoreBlueprints/Weapons/PrimalItem_WeaponPike.PrimalItem_WeaponPike'"
        },
        { 
          "Amount":1,
          "Quality":0,
          "ForceBlueprint":false,
          "Blueprint":"Blueprint'/Game/PrimalEarth/CoreBlueprints/Weapons/PrimalItem_WeaponStoneClub.PrimalItem_WeaponStoneClub'"
        }
      ]
    }
  },
  "ShopItems":{ 
    "ingots100":{ 
      "Type":"item",
      "Description":"Metal Ingot (100x)",
      "Price":15,
      "Items":[ 
        { 
          "Quality":0,
          "ForceBlueprint":false,
          "Amount":100,
          "Blueprint":"Blueprint'/Game/PrimalEarth/CoreBlueprints/Resources/PrimalItemResource_MetalIngot.PrimalItemResource_MetalIngot'"
        }
      ]
    },
    "tools":{ 
      "Type":"item",
      "Description":"Tools (Metal Hatchet, Metal Pick)",
      "Price":5,
      "Items":[ 
        { 
          "Quality":0,
          "ForceBlueprint":false,
          "Amount":1,
          "Blueprint":"Blueprint'/Game/PrimalEarth/CoreBlueprints/Weapons/PrimalItem_WeaponMetalHatchet.PrimalItem_WeaponMetalHatchet'"
        },
        { 
          "Quality":0,
          "ForceBlueprint":false,
          "Amount":1,
          "Blueprint":"Blueprint'/Game/PrimalEarth/CoreBlueprints/Weapons/PrimalItem_WeaponMetalPick.PrimalItem_WeaponMetalPick'"
        }
      ]
    },
    "para":{ 
      "Type":"dino",
      "Description":"Parasaurolophus",
      "Level":10,
      "Price":20,
      "MinLevel":10,
      "MaxLevel":15,
      "Blueprint":"Blueprint'/Game/PrimalEarth/Dinos/Para/Para_Character_BP.Para_Character_BP'"
    },
    "carno":{ 
      "Type":"dino",
      "Description":"Carnotaurus",
      "Level":15,
      "Price":50,
      "Neutered":true,
      "Blueprint":"Blueprint'/Game/PrimalEarth/Dinos/Carno/Carno_Character_BP.Carno_Character_BP'"
    },
    "crate25":{ 
      "Type":"beacon",
      "Description":"SupplyCrate Lvl 25",
      "Price":100,
      "ClassName":"SupplyCrate_Level25_Double_C"
    },
    "crate2":{ 
      "Type":"beacon",
      "Description":"Artifact Crate 2",
      "Price":100,
      "ClassName":"ArtifactCrate_2_C"
    },
    "exp1000":{ 
      "Type":"experience",
      "Description":"1000 points of experience",
      "GiveToDino":false,
      "Price":55,
      "Amount":1000.0
    },
    "tekengram":{ 
      "Type":"unlockengram",
      "Description":"Engram TEK Boots & Gloves",
      "Price":20,
      "Items":[ 
        { 
          "Blueprint":"Blueprint'/Game/PrimalEarth/CoreBlueprints/Items/Armor/TEK/PrimalItemArmor_TekBoots.PrimalItemArmor_TekBoots'"
        },
        { 
          "Blueprint":"Blueprint'/Game/PrimalEarth/CoreBlueprints/Items/Armor/TEK/PrimalItemArmor_TekGloves.PrimalItemArmor_TekGloves'"
        }
      ]
    },
    "allengrams":{ 
      "Type":"command",
      "Description":"All engrams",
      "Price":1000,
      "Items":[ 
        { 
          "Command":"GiveEngrams"
        }
      ]
    }
  },
  "SellItems":{ 
    "metal":{ 
      "Type":"item",
      "Description":"100x metal",
      "Price":10,
      "Amount":100,
      "Blueprint":"Blueprint'/Game/Mods/Stack50/Resources/PrimalItemResource_Stone_Child.PrimalItemResource_Stone_Child'"
    }
  },
  "Messages":{ 
    "Sender":"ArkShop",
    "BoughtItem":"<RichColor Color=\"0, 1, 0, 1\">You have successfully bought item</>",
    "BoughtDino":"<RichColor Color=\"0, 1, 0, 1\">You have successfully bought dino</>",
    "BoughtBeacon":"<RichColor Color=\"0, 1, 0, 1\">You have successfully bought beacon</>",
    "BoughtExp":"<RichColor Color=\"0, 1, 0, 1\">You have successfully bought experience</>",
    "ReceivedPoints":"<RichColor Color=\"1, 1, 0, 1\">You have received {0} points! (total: {1})</>",
    "HavePoints":"You have {0} points",
    "NoPoints":"<RichColor Color=\"1, 0, 0, 1\">You don't have enough points</>",
    "WrongId":"<RichColor Color=\"1, 0, 0, 1\">Wrong id</>",
    "NoPermissionsKit":"<RichColor Color=\"1, 0, 0, 1\">You don't have permission to use this kit</>",
    "CantBuyKit":"<RichColor Color=\"1, 0, 0, 1\">You can't buy this kit</>",
    "BoughtKit":"<RichColor Color=\"0, 1, 0, 1\">You have successfully bought {0} kit</>",
    "AvailableKits":"Available kits for you:",
    "NoKits":"No available kits",
    "KitsLeft":"You have {0} {1} kits left",
    "NoKitsLeft":"You don't have {0} kits left",
    "CantGivePoints":"<RichColor Color=\"1, 0, 0, 1\">You can't give points to yourself</>",
    "RidingDino":"<RichColor Color=\"1, 0, 0, 1\">You can't buy this item while riding a dino</>",
    "SentPoints":"<RichColor Color=\"0, 1, 0, 1\">You have successfully sent {0} points to {1}</>",
    "GotPoints":"You have received {0} points from {1}",
    "NoPlayer":"<RichColor Color=\"1, 0, 0, 1\">Player doesn't exist</>",
    "FoundMorePlayers":"<RichColor Color=\"1, 0, 0, 1\">Found more than one player with the given name</>",
    "BuyUsage":"Usage: /buy id amount",
    "ShopUsage":"Usage: /shop page",
    "KitUsage":"Usage: /kit KitName",
    "BuyKitUsage":"Usage: /BuyKit KitName amount",
    "TradeUsage":"Usage: /trade 'Player Name' amount",
    "PointsCmd":"/points",
    "TradeCmd":"/trade",
    "BuyCmd":"/buy",
    "ShopCmd":"/shop",
    "KitCmd":"/kit",
    "BuyKitCmd":"/buykit",
    "SellCmd":"/sell",
    "ShopSellCmd":"/shopsell",
    "SellUsage":"Usage: /sell id amount",
    "NotEnoughItems":"<RichColor Color=\"1, 0, 0, 1\">You don't have enough items ({0}/{1})</>",
    "SoldItems":"<RichColor Color=\"0, 1, 0, 1\">You have successfully sold items</>",
    "BadLevel":"<RichColor Color=\"1, 0, 0, 1\">Required level: {0} - {1}</>",
    "KitsListPrice":"Price: {0}",
    "KitsListFormat":"\"{0}\" - {1}. {2} left. {3}\n",
    "StoreListDino":"{0}) {1}. Level: {2}. Id: {3}. Price: {4}\n",
    "StoreListItem":"{0}) {1}. Id: {2}. Price: {3}\n",
    "StoreListFormat":"{0}",
    "OnlyOnSpawnKit":"This kit can be used only on spawn",
    "HelpCmd":"/shophelp",
    "ShopMessage":"Usage: /buy id amount",
    "HelpMessage":"This is shop help message"
  }
}
 
You missed "Blueprint": like 10 times haha.
Next time you can check here: https://jsonformatter.curiousconcept.com/

Use this config: https://pastebin.com/Txjxw07h
I'm trying this for the first time and have some errors after I have made changes to the top two kits for testing.. Getting error parse error at 775: syntax error - unexpected '}'; expected ':' 09/06/18 20:31 [API][warning] Failed to load plugin - ArkShop Error code: 1114.. My config below.


JSON:
{
  "General":{
    "TimedPointsReward":{
      "Enabled":true,
      "Interval":60,
      "Groups":{
        "Default":{
          "Amount":5
        },
        "Premiums":{
          "Amount":30
        }
      }
    },
    "ItemsPerPage":15,
    "ShopDisplayTime":30.0,
    "ShopTextSize":1.3,
    "DbPathOverride":"",
    "DefaultKit":"starter,ptero"
  },
  "Kits":{
    "starter":{
      "DefaultAmount":4,
      "Price":0,
      "Description":"Starter kit (Tools and leather)",
      "OnlyFromSpawn":false,
      "Items":[
        {
          "Amount":1,
          "Quality":5,
          "ForceBlueprint":false,
          "Blueprint'/Game/PrimalEarth/CoreBlueprints/Items/Armor/Leather/PrimalItemArmor_HideBoots.PrimalItemArmor_HideBoots'"
        },
        {
          "Amount":1,
          "Quality":5,
          "ForceBlueprint":false,
          "Blueprint'/Game/PrimalEarth/CoreBlueprints/Items/Armor/Leather/PrimalItemArmor_HideGloves.PrimalItemArmor_HideGloves'"
        },
        {
          "Amount":1,
          "Quality":5,
          "ForceBlueprint":false,
          "Blueprint'/Game/PrimalEarth/CoreBlueprints/Items/Armor/Leather/PrimalItemArmor_HideHelmet.PrimalItemArmor_HideHelmet'"
        },
        {
          "Amount":1,
          "Quality":5,
          "ForceBlueprint":false,
          "Blueprint'/Game/PrimalEarth/CoreBlueprints/Items/Armor/Leather/PrimalItemArmor_HidePants.PrimalItemArmor_HidePants'"
        },
        {
          "Amount":1,
          "Quality":5,
          "ForceBlueprint":false,
          "Blueprint'/Game/PrimalEarth/CoreBlueprints/Items/Armor/Leather/PrimalItemArmor_HideShirt.PrimalItemArmor_HideShirt'"
        },
        {
          "Amount":1,
          "Quality":5,
          "ForceBlueprint":false,
          "Blueprint'/Game/PrimalEarth/CoreBlueprints/Items/Structures/Misc/PrimalItemStructure_SleepingBag_Hide.PrimalItemStructure_SleepingBag_Hide'"
        },
        {
          "Amount":1,
          "Quality":20,
          "ForceBlueprint":false,
          "Blueprint'/Game/PrimalEarth/CoreBlueprints/Weapons/PrimalItem_WeaponStonePick.PrimalItem_WeaponStonePick'"
        },
        {
          "Amount":1,
          "Quality":20,
          "ForceBlueprint":false,
          "Blueprint'/Game/PrimalEarth/CoreBlueprints/Weapons/PrimalItem_WeaponStoneHatchet.PrimalItem_WeaponStoneHatchet'"
        }
      ]
    },
    "ptero":{
      "DefaultAmount":2,
      "Price":15,
      "Description":"ptero and saddle",
      "Dinos":[
        {
          "Level":150,
          "Neutered":true,
          "Blueprint":"Blueprint'/Game/PrimalEarth/Dinos/Ptero/Ptero_Character_BP.Ptero_Character_BP'"
        }
      ],
      "Items":[
        {
          "Amount":1,
          "Quality":40,
          "ForceBlueprint":false,
          "Blueprint'/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/PrimalItemArmor_PteroSaddle.PrimalItemArmor_PteroSaddle'"
        }
      ]
    },
    "tools":{
      "DefaultAmount":3,
      "Price":50,
      "MinLevel":1,
      "MaxLevel":20,
      "Description":"Tools kit (pike and club)",
      "Permissions":"Admins,Premiums",
      "Items":[
        {
          "Amount":1,
          "Quality":0,
          "ForceBlueprint":false,
          "Blueprint":"Blueprint'/Game/PrimalEarth/CoreBlueprints/Weapons/PrimalItem_WeaponPike.PrimalItem_WeaponPike'"
        },
        {
          "Amount":1,
          "Quality":0,
          "ForceBlueprint":false,
          "Blueprint":"Blueprint'/Game/PrimalEarth/CoreBlueprints/Weapons/PrimalItem_WeaponStoneClub.PrimalItem_WeaponStoneClub'"
        }
      ]
    }
  },
  "ShopItems":{
    "ingots100":{
      "Type":"item",
      "Description":"Metal Ingot (100x)",
      "Price":15,
      "Items":[
        {
          "Quality":0,
          "ForceBlueprint":false,
          "Amount":100,
          "Blueprint":"Blueprint'/Game/PrimalEarth/CoreBlueprints/Resources/PrimalItemResource_MetalIngot.PrimalItemResource_MetalIngot'"
        }
      ]
    },
    "tools":{
      "Type":"item",
      "Description":"Tools (Metal Hatchet, Metal Pick)",
      "Price":5,
      "Items":[
        {
          "Quality":0,
          "ForceBlueprint":false,
          "Amount":1,
          "Blueprint":"Blueprint'/Game/PrimalEarth/CoreBlueprints/Weapons/PrimalItem_WeaponMetalHatchet.PrimalItem_WeaponMetalHatchet'"
        },
        {
          "Quality":0,
          "ForceBlueprint":false,
          "Amount":1,
          "Blueprint":"Blueprint'/Game/PrimalEarth/CoreBlueprints/Weapons/PrimalItem_WeaponMetalPick.PrimalItem_WeaponMetalPick'"
        }
      ]
    },
    "para":{
      "Type":"dino",
      "Description":"Parasaurolophus",
      "Level":10,
      "Price":20,
      "MinLevel":10,
      "MaxLevel":15,
      "Blueprint":"Blueprint'/Game/PrimalEarth/Dinos/Para/Para_Character_BP.Para_Character_BP'"
    },
    "carno":{
      "Type":"dino",
      "Description":"Carnotaurus",
      "Level":15,
      "Price":50,
      "Neutered":true,
      "Blueprint":"Blueprint'/Game/PrimalEarth/Dinos/Carno/Carno_Character_BP.Carno_Character_BP'"
    },
    "crate25":{
      "Type":"beacon",
      "Description":"SupplyCrate Lvl 25",
      "Price":100,
      "ClassName":"SupplyCrate_Level25_Double_C"
    },
    "crate2":{
      "Type":"beacon",
      "Description":"Artifact Crate 2",
      "Price":100,
      "ClassName":"ArtifactCrate_2_C"
    },
    "exp1000":{
      "Type":"experience",
      "Description":"1000 points of experience",
      "GiveToDino":false,
      "Price":55,
      "Amount":1000.0
    },
    "tekengram":{
      "Type":"unlockengram",
      "Description":"Engram TEK Boots & Gloves",
      "Price":20,
      "Items":[
        {
          "Blueprint":"Blueprint'/Game/PrimalEarth/CoreBlueprints/Items/Armor/TEK/PrimalItemArmor_TekBoots.PrimalItemArmor_TekBoots'"
        },
        {
          "Blueprint":"Blueprint'/Game/PrimalEarth/CoreBlueprints/Items/Armor/TEK/PrimalItemArmor_TekGloves.PrimalItemArmor_TekGloves'"
        }
      ]
    },
    "allengrams":{
      "Type":"command",
      "Description":"All engrams",
      "Price":1000,
      "Items":[
        {
          "Command":"GiveEngrams"
        }
      ]
    }
  },
  "SellItems":{
    "metal":{
      "Type":"item",
      "Description":"100x metal",
      "Price":10,
      "Amount":100,
      "Blueprint":"Blueprint'/Game/Mods/Stack50/Resources/PrimalItemResource_Stone_Child.PrimalItemResource_Stone_Child'"
    }
  },
  "Messages":{
    "Sender":"ArkShop",
    "BoughtItem":"<RichColor Color=\"0, 1, 0, 1\">You have successfully bought item</>",
    "BoughtDino":"<RichColor Color=\"0, 1, 0, 1\">You have successfully bought dino</>",
    "BoughtBeacon":"<RichColor Color=\"0, 1, 0, 1\">You have successfully bought beacon</>",
    "BoughtExp":"<RichColor Color=\"0, 1, 0, 1\">You have successfully bought experience</>",
    "ReceivedPoints":"<RichColor Color=\"1, 1, 0, 1\">You have received {0} points! (total: {1})</>",
    "HavePoints":"You have {0} points",
    "NoPoints":"<RichColor Color=\"1, 0, 0, 1\">You don't have enough points</>",
    "WrongId":"<RichColor Color=\"1, 0, 0, 1\">Wrong id</>",
    "NoPermissionsKit":"<RichColor Color=\"1, 0, 0, 1\">You don't have permission to use this kit</>",
    "CantBuyKit":"<RichColor Color=\"1, 0, 0, 1\">You can't buy this kit</>",
    "BoughtKit":"<RichColor Color=\"0, 1, 0, 1\">You have successfully bought {0} kit</>",
    "AvailableKits":"Available kits for you:",
    "NoKits":"No available kits",
    "KitsLeft":"You have {0} {1} kits left",
    "NoKitsLeft":"You don't have {0} kits left",
    "CantGivePoints":"<RichColor Color=\"1, 0, 0, 1\">You can't give points to yourself</>",
    "RidingDino":"<RichColor Color=\"1, 0, 0, 1\">You can't buy this item while riding a dino</>",
    "SentPoints":"<RichColor Color=\"0, 1, 0, 1\">You have successfully sent {0} points to {1}</>",
    "GotPoints":"You have received {0} points from {1}",
    "NoPlayer":"<RichColor Color=\"1, 0, 0, 1\">Player doesn't exist</>",
    "FoundMorePlayers":"<RichColor Color=\"1, 0, 0, 1\">Found more than one player with the given name</>",
    "BuyUsage":"Usage: /buy id amount",
    "ShopUsage":"Usage: /shop page",
    "KitUsage":"Usage: /kit KitName",
    "BuyKitUsage":"Usage: /BuyKit KitName amount",
    "TradeUsage":"Usage: /trade 'Player Name' amount",
    "PointsCmd":"/points",
    "TradeCmd":"/trade",
    "BuyCmd":"/buy",
    "ShopCmd":"/shop",
    "KitCmd":"/kit",
    "BuyKitCmd":"/buykit",
    "SellCmd":"/sell",
    "ShopSellCmd":"/shopsell",
    "SellUsage":"Usage: /sell id amount",
    "NotEnoughItems":"<RichColor Color=\"1, 0, 0, 1\">You don't have enough items ({0}/{1})</>",
    "SoldItems":"<RichColor Color=\"0, 1, 0, 1\">You have successfully sold items</>",
    "BadLevel":"<RichColor Color=\"1, 0, 0, 1\">Required level: {0} - {1}</>",
    "KitsListPrice":"Price: {0}",
    "KitsListFormat":"\"{0}\" - {1}. {2} left. {3}\n",
    "StoreListDino":"{0}) {1}. Level: {2}. Id: {3}. Price: {4}\n",
    "StoreListItem":"{0}) {1}. Id: {2}. Price: {3}\n",
    "StoreListFormat":"{0}",
    "OnlyOnSpawnKit":"This kit can be used only on spawn",
    "HelpCmd":"/shophelp",
    "ShopMessage":"Usage: /buy id amount",
    "HelpMessage":"This is shop help message"
  }
}
 
Is it possible to add purchase rights in the store, include, /buy fly
 
Tebex
Monetize your ARK server
Rogue Vikings Discord Server - Rogue Vikings Gaming Servers - Minecraft Prison Servers - Minecraft Creative Servers
Tempest Dedicated Servers
Back
Top