Installation

This installation guide covers both ESX and QBCore frameworks.

ResourceSource

ox_lib

object_gizmo

0r_lib

You can find it on your keymaster account. (It is delivered as Escrow.)

qua_0r_house

You can find it on your keymaster account. (It is delivered as Escrow.)

qua_luxemotel

You can find it on your keymaster account. (It is delivered as Escrow.)

qua_house_garage

You can find it on your keymaster account. (It is delivered as Escrow.)

Target System

The system can work with ox_target and qb-target plugins. Or you can integrate it by making arrangements yourself.

Supported Inventories

  • ox_inventory

  • qb-inventory

  • qs-inventory

  • origen_inventory

  • codem_inventory

  • custom inventory

SQL For House Script

Do not forget to execute the database.sql file !

Server.cfg

The server.cfg initialization order should be as follows.

start es_extended
start 0r_lib
start 0r-pixelhouse

start qua_0r_house
start qua_house_garage
--- esx resources --

Errors

ERROR: Unknown column `0resmon_ph_houses`.'type' in 'field list'

Please run this code block on the database:

ALTER TABLE `0resmon_ph_houses`
ADD COLUMN type VARCHAR(32) DEFAULT NULL;
ERROR: Check constraint `0resmon_ph_owned_houses`.'chk_type' is violated.

Please run this code block on the database:

ALTER TABLE `0resmon_ph_owned_houses`
DROP CONSTRAINT chk_type;
ERROR: Unknown column `0resmon_ph_houses`.'meta' in 'field list'

Please run this code block on the database:

ALTER TABLE `0resmon_ph_houses`
ADD COLUMN meta LONGTEXT DEFAULT "{}";

Last updated