Configuration · origen_masterjob
All settings live in config.lua.
General
| Variable | Default | Description |
|---|---|---|
Config.Language | 'en' | UI language |
Config.Debug | false | Enable debug logging |
Config.CustomNotify | false | true = use Custom.ShowNotification in custom/client.lua. false = use framework notifications |
Config.customDrawText | false | true = use Custom.DrawText for interaction hints |
Config.OrigenNotify | false | Enable origen_notify integration for help notifications |
Config.OrigenInventoryOldVersion | false | Compatibility flag for older origen_inventory versions |
Config.fixQS | true | Fix qs-inventory metadata compatibility |
Config.KeyMenu | 'F7' | Keybind to open the business menu |
Config.Phone | 'default' | Phone integration — 'default' | 'qs-smartphone' | 'lb-phone' |
Config.MenuItemTablet | true | Enable opening the menu via tablet item |
Paycheck
| Variable | Default | Description |
|---|---|---|
Config.PaycheckInterVal | 30 | Minutes between paycheck cycles |
Config.OnDutyPay | true | Only pay employees who are on duty |
Config.InfinitePayckeck | false | true = pay from infinite state funds. false = deduct from business society account |
Config.MinSocietyPay | 300 | Minimum wage when the business runs out of funds (only when InfinitePayckeck = false) |
Config.MaxSocietySalary | 9999 | Maximum salary a boss can set for any grade |
Delivery
| Variable | Default | Description |
|---|---|---|
Config.DeliveryTime | 15 | Minutes customers wait before an order expires |
Config.BusinessLevelFactor | 150 | XP per level — affects business upgrade costs |
Config.InfiniteBusinessCars | false | true = ignore vehicle state when opening the business garage |
Shops
| Variable | Default | Description |
|---|---|---|
Config.strictSellItemsShop | true | Only allow selling items that are explicitly registered in the shop catalog |
Restricted jobs
Jobs blocked from creating or owning a business:
lua
Config.RestritedJob = {
['unemployed'] = false,
['police'] = true, -- police cannot own a business
}Accounts
| Variable | Default | Description |
|---|---|---|
Config.Account.Transfer | 'cash' | Account used for money transfers between players |
Config.Account.billing | 'bank' | Account used for billing clients |
Config.Account.Paybill | 'bank' | Account debited when a player pays a bill |
Config.Account.SellVehicle | 'cash' | Account credited when selling a vehicle |
Item-based money
lua
Config.Money = {
ItemCash = false, -- true = use a cash item instead of framework account
account = 'cash', -- item name when ItemCash = true
}Markers
Defines the interaction points available inside a business. Each key maps to a marker type:
| Key | Label | Description |
|---|---|---|
stash | Store | Warehouse stash (50 slots) |
stash_safe | Safe | Safe stash (20 slots) |
clothing | Locker room | Outfit / clothing menu |
delivery | Load post | Delivery order pickup |
tuning | Modification point | Vehicle tuning (mechanic type) |
garage | Garage | Standard business garage |
gar_taxi | Taxis garage | Taxi-specific garage with predefined vehicles |
gar_business | Company garage | Company-wide garage |
Default garage
The default shared employee garage location (used when Config.CustomGarage = false):
lua
Config.Garage = {
coords = vector4(202.1999, -1004.4250, -98.9999, 3.3941),
parks = {
{ coords = vector4(203.5676, -997.8387, -99.0000, 177.1650) },
{ coords = vector4(198.1634, -997.8378, -99.0000, 177.9458) },
{ coords = vector4(193.7832, -997.6540, -99.0000, 179.1584) },
{ coords = vector4(194.8356, -1003.9368, -99.0000, 269.3047) },
},
}Bill NPCs
Locations of the NPCs where players can check and pay their bills:
lua
Config.BillsNPCs = {
{ coords = vector4(1269.82, -3200.06, 5.9, 271.54), model = "player_one" },
{ coords = vector4(1245.3, -3202.88, 6.03, 11.69), model = "player_two" },
}Radio frequencies
Multi-channel radio frequency names available to businesses:
lua
Config.BusinessMultifrec = {
"Frequency 1",
"Frequency 2",
-- ...up to 10
}Admin commands
Configured in custom/server/command.lua. All commands require the mod permission unless noted:
| Command | Example | Description |
|---|---|---|
/givebusiness | /givebusiness 1 shop | Grant a player permission to create a business |
/createbusiness | /createbusiness | Create your business (after receiving permission) |
/removebusiness | /removebusiness 3 | Remove a player from their business |
/deletebusiness | /deletebusiness origen | Delete a business by job name |
/additemsbusiness | /additemsbusiness origen tosti 10 0 | Add a shop item to a business |
/removeitemsbusiness | /removeitemsbusiness origen tosti | Remove a shop item from a business |
/givebusinesscar | /givebusinesscar origen sultan | Give a vehicle to a business fleet |
/removebusinesscar | /removebusinesscar origen ORIGEN001 | Remove a vehicle from a business fleet |
/business | /business | Check your current business and duty state |