Sellables

data/sellables.lua

This file contains all sellable item definitions.

local sellables = {
    aluminium = {       -- item name
        min_price = 10, -- min price offered by peds
        max_price = 50, -- max price offered by peds
        min_sale = 1,   -- min amount to sell
        max_sale = 10,  -- max amount to sell
    },
}

Last updated