Store Items Location
Order Items Location Config (order_items.lua
)
order_items.lua
)This configuration defines NPCs and locations where players can obtain necessary items for boosting contracts. Each entry includes the NPC model, location coordinates, and the scenario they perform.
Example Config
Config.OrderItemsLocation = {
{
model = 'a_m_y_vinewood_04',
coords = vector4(-530.2889, 230.6198, 82.3491, 105.2757),
scenario = 'WORLD_HUMAN_STAND_MOBILE_UPRIGHT'
},
}
Fields Explained
Field
Description
model
NPC model hash or name (ped type).
coords
Vector4 specifying the X, Y, Z coordinates and heading (H).
scenario
Ped scenario/animation (e.g., standing, sitting, using phone).
Notes
Use vector4 to define exact location and orientation of NPCs.
The scenario ensures the NPC behaves naturally in the game world.
You can add multiple NPCs for different items, missions, or classes.
Helps create an immersive experience where players interact with NPCs to obtain items needed for contracts.
Last updated