Removing items from the sell list?
Hello,

I noticed on a few other servers. With this plugin, they were able to remove the items from the sell list. Basically, even if an item that is not sellable is in your inventory. It does not show up un the sell list as "Not-Sellable". Only the items that are sellable show up. Can someone please help me with that? I woul appreciate it.

Merged post

@k1lly0u Can you help me please?
I would imagine you remove the item from the Sale_Data json located in "/oxide/data/ServerRewards". See example below for removing AK, reload the plugin and see if that does the trick.

   "weapon.mod.8x.scope": {
      "0": {
        "price": 0.0,
        "displayName": "8x Zoom Scope",
        "enabled": false
      }
    },
Remove from this line --> "rifle.ak": {  
      "0": {
        "price": 0.0,
        "displayName": "Assault Rifle",
        "enabled": false
      }, <--- to this line
      "10135": {
        "price": 0.0,
        "displayName": "Digital Camo AK47",
        "enabled": false
      },​

Doesn't work, uff @k1lly0u
sale_data is regenerated when plugin reloaded

can we do this?

up, any help on this one?