Add Items
Open the items.lua file inside the config folder. The items go by categories. The default categories are: drink, alcohol, snacks, doughnut, fruit and slush.
You can create a new category or insert the item in one of the already created ones. Simply create a new item by copying the format of one already created. Note that here you can change the price, the image and the name of the item to be delivered. An example for a weapon:
["Knife"] = { --This is the name that will be displayed in the UI
price = 1000, -- The price
image = "./assets/weapons/knife.png", -- The route to the image
itemName = "weapon_knife" -- The name of the GTA item
}
Last updated