"recycler.give $player.id" no longer works in GuiShopFixed

Hello, when I want to use the command of "Extended Recycler" it takes the scraps well but does not give the recycle.
Here is my config in Guishop :

"Recycler": {
  "DisplayName": "Recycler",
  "Shortname": "recycler_static",
  "EnableBuy": true,
  "EnableSell": false,
  "Image": "https://zupimages.net/up/21/05/13p6.png",
  "SellPrice": 1.0,
  "BuyPrice": 700.0,
  "BuyCooldown": 0,
  "SellCooldown": 0,
  "BuyQuantity": [
    1,
    10,
    100,
    1000
  ],
  "SellQuantity": [
    1,
    10,
    100,
    1000
  ],
  "KitName": null,
  "Command": [
    "recycler.give $player.id"
  ],
  "SkinId": 0
},​

I don't know if the problem comes from "Extended Recycler" , "GuiShop"Or other.
Thank you for your help.

Please update to the latest release should resolve this bug. 

Thanks to you khan it works.

I also noticed two things.
if I add :

    "PatrolHelicopter": {
      "DisplayName": "Appeler un hélico sur vous",
      "Shortname": "PatrolHelicopter",
      "EnableBuy": true,
      "EnableSell": false,
      "Image": "https://rustlabs.com/img/screenshots/helicopter.png",
      "SellPrice": 1.0,
      "BuyPrice": 500.0,
      "BuyCooldown": 0,
      "SellCooldown": 0,
      "BuyQuantity": [
        1,
        10,
        100,
        1000
      ],
      "SellQuantity": [
        1,
        10,
        100,
        1000
      ],
      "KitName": null,
      "Command": [
        "personalheli.call $player.id"
      ],​
I get the message "Item was not found" yet if I use the "Personal Heli" plugin command alone it works.
And the second thing is that even if I deactivate the shop button :
"Enable Shop Buy/Sell All Button": false,
I still have the button that appears on the interface.
Thanks for your help
concept45

I also noticed two things.
if I add :

    "PatrolHelicopter": {
      "DisplayName": "Appeler un hélico sur vous",
      "Shortname": "PatrolHelicopter",
      "EnableBuy": true,
      "EnableSell": false,
      "Image": "https://rustlabs.com/img/screenshots/helicopter.png",
      "SellPrice": 1.0,
      "BuyPrice": 500.0,
      "BuyCooldown": 0,
      "SellCooldown": 0,
      "BuyQuantity": [
        1,
        10,
        100,
        1000
      ],
      "SellQuantity": [
        1,
        10,
        100,
        1000
      ],
      "KitName": null,
      "Command": [
        "personalheli.call $player.id"
      ],​
I get the message "Item was not found" yet if I use the "Personal Heli" plugin command alone it works.

If I deactivate the shop button :
"Enable Shop Buy/Sell All Button": false,
I still have the button that appears on the interface.

The first issue here is that your display name + item name must match for it to work technically.

"Appeler Un Hélico Sur Vous": {
  "DisplayName": "Appeler Un Hélico Sur Vous",
  "Shortname": "PatrolHelicopter",
  "EnableBuy": true,
  "EnableSell": false,
  "Image": "https://rustlabs.com/img/screenshots/helicopter.png",
  "SellPrice": 1.0,
  "BuyPrice": 500.0,
  "BuyCooldown": 0,
  "SellCooldown": 0,
  "BuyQuantity": [
    1,
    10,
    100,
    1000
  ],
  "SellQuantity": [
    1,
    10,
    100,
    1000
  ],
  "KitName": null,
  "Command": [
    "personalheli.call $player.id"
  ],

 The second issue relating to the buy and sell All buttons I am not able to re-create this issue/or maybe I am not understanding the second problem?

A screenshot showing the issue + config setting would help further debug/investigate it better for me. Or you can contact me on discord Khan#8615 and we can live share/troubleshoot this. 

 

Also when naming custom shop items in general this plugin must follow the Title Case naming convention system/formatting style I believe. 



Merged post

Ya I just double-checked as long as you follow the Tite Case naming system/convention guishop should have no issues reading your custom shop items.

Example working names;

"Glue",

"Word second third Word",

" GoldBars",

"Recycler test Ree"

QSGv0a8LwNw8iy7.png

Thank you very much for your quick help my first problem is solved for the second here is a screenshot:


and here is my config.
https://pastebin.com/4gTk1AHS
Thank you again for your help I add you on discord.

Easy fix! simply remove the guishop.button permission to disable/remove the guishop button feature! :)

Ha yes I'm stupid I had not thought of that dsl thank you again.

Locked automatically