Item Values

data/item_values.lua

This file handles the default item values.

Item values will vary between stores and dealers based on other config options, but this is the baseline figure they will be working from.

Structure

local item_values = { 
  item_name = { 
    min = minimum_value,
    max = maximum_value 
  }, 
  -- ... 
}

Example

local item_values = { 
  ["lockpick"] = { 
    min = 5, 
    max = 5, 
  },
  
  ["weapon_knife"] = {
    min = 200,
    max = 200,
  },

  ["weapon_pistol"] = {
    min = 1000,
    max = 1000,
  },

  ["weapon_smg"] = {
    min = 5000,
    max = 5000,
  },
}

Last updated