Commands
Core Business includes player commands, admin commands, and admin subcommands accessed through the main /business command.
Player Commands
all
/businessqb-coreesx
Opens the business CEO tablet UI. Shareholders and employees can view their businesses, manage properties, employees, market listings, and finances.
Usage
lua
/businessall
/marketqb-coreesx
Opens the International Market UI where players can buy and sell commodities at dynamic NPC prices.
Usage
lua
/marketall
/billsqb-coreesx
Opens the bills sidebar showing pending invoices from businesses. Players can pay bills from their personal funds.
Usage
lua
/billsall
/exitinteriorqb-coreesx
Exits the current property interior and returns the player to the default routing bucket.
Usage
lua
/exitinteriorAdmin Commands
admin
/propertyeditorqb-coreesx
Opens the property editor admin tool. Provides a freecam with gizmo controls for placing property access points (entrance, storage, garage, billboard). Requires admin ACE permission.
Usage
lua
/propertyeditorAdmin Subcommands
The /business command doubles as an admin interface when called with arguments. All subcommands require admin ACE permission.
admin
/business createqb-coreesx
Creates a new business and assigns the specified player as owner.
| Argument | Type | Description |
|---|---|---|
name | | Business name |
identifier|playerId | | Player citizenid/identifier or server ID |
shares | | Owner share percentage (default: 100) |
Usage
lua
/business create "Los Santos Logistics" 1 100
/business create "My Company" ABC12345 75admin
/business deleteqb-coreesx
Deletes a business and all its employees. Properties are detached but not deleted.
| Argument | Type | Description |
|---|---|---|
businessId | | Business ID to delete |
Usage
lua
/business delete 5admin
/business shareholder addqb-coreesx
Adds a player as shareholder to a business with a specified percentage. Other shareholders are proportionally redistributed.
| Argument | Type | Description |
|---|---|---|
identifier|playerId | | Player citizenid/identifier or server ID |
businessId | | Business ID |
percentage | | Share percentage (1-100) |
Usage
lua
/business shareholder add 2 1 25
-- Adds player server ID 2 to business 1 with 25% sharesadmin
/business shareholder removeqb-coreesx
Removes a shareholder from a business. Their shares are redistributed to remaining shareholders.
| Argument | Type | Description |
|---|---|---|
identifier|playerId | | Player citizenid/identifier or server ID |
businessId | | Business ID |
Usage
lua
/business shareholder remove ABC12345 1admin
/business property setqb-coreesx
Assigns a property to a business, or detaches it by specifying 'none'.
| Argument | Type | Description |
|---|---|---|
propertyId | | Property ID |
businessId|none | | Business ID to assign, or none to detach |
Usage
lua
/business property set 3 1
-- Assigns property 3 to business 1
/business property set 3 none
-- Detaches property 3 from its businessadmin
/business property deleteqb-coreesx
Permanently deletes a property from the database.
| Argument | Type | Description |
|---|---|---|
propertyId | | Property ID to delete |
Usage
lua
/business property delete 12admin
/business money addqb-coreesx
Adds money to a business balance.
| Argument | Type | Description |
|---|---|---|
businessId | | Business ID |
amount | | Amount to add |
Usage
lua
/business money add 1 50000admin
/business money removeqb-coreesx
Removes money from a business balance.
| Argument | Type | Description |
|---|---|---|
businessId | | Business ID |
amount | | Amount to remove |
Usage
lua
/business money remove 1 25000admin
/business money setqb-coreesx
Sets a business balance to an exact amount.
| Argument | Type | Description |
|---|---|---|
businessId | | Business ID |
amount | | New balance amount |
Usage
lua
/business money set 1 1000000admin
/business boostqb-coreesx
Manually triggers a production boost on a property.
| Argument | Type | Description |
|---|---|---|
propertyId | | Property ID to boost |
multiplier | | Production multiplier (default: 1.5) |
duration | | Duration in seconds (default: 1800) |
Usage
lua
/business boost 3
-- Boosts property 3 at 1.5x for 30 minutes
/business boost 3 2.0 3600
-- Boosts property 3 at 2.0x for 1 hourconsole
/business listqb-coreesx
Prints all businesses to the server console. Console-only command.
Usage
lua
-- Run from server console only
business listconsole
/business propertiesqb-coreesx
Prints all properties to the server console. Console-only command.
Usage
lua
-- Run from server console only
business properties