Adding Items or Weapons
Quasar Black Market allows you to add new items or weapons for players to purchase from the truck. Follow this simple guide to configure and expand the list of available items or weapons:
1
2
Weapon Configuration
To add a new weapon, copy and modify an existing weapon entry.
{
coord = {1.0, -0.64, 0.0, 0.0, 0.0, -90.0}, -- Position in the truck
prop = "w_ar_assaultrifle", -- Prop model for visual display
name = "weapon_assaultrifle", -- Weapon spawn name
label = "ASSAULT RIFLE", -- Display name
price = 1500, -- Price of the weapon
maxquantity = 1 -- Maximum quantity allowed in inventory
},
Item Configuration
To add a new item, copy and modify an existing item entry.
{
coord = {0.8, 0.0, 2.0, 0.0, 0.0, 0.0}, -- Position in the truck
prop = "prop_c4_final", -- Prop model for visual display
name = "c4", -- Item name
label = "C4", -- Display name
price = 1200, -- Price of the item
maxquantity = 1, -- Maximum quantity allowed in inventory
desc = "High-powered adhesive explosive, ideal for sabotage and ambushes. Remote detonation for maximum precision and destruction." -- Description
},
How It Works
This system provides a dynamic and interactive way to introduce drug farming, enabling server owners to control the flow of illegal activities while ensuring balance and immersion.
Last updated