Installation
- Download
loaf_realtor
from keymaster - Download & install all the dependencies. Make sure to follow the instructions for each dependency
- Unzip loaf_realtor & add it to your resources folder
- Run
realtor.sql
- Go to
loaf_housing/shared/config.lua
and setenabled
to true in theRealtor
table, line 108 by default - Go to
loaf_realtor/shared/config.lua
and setframework
to your framework (esx or qb) - Add
ensure loaf_realtor
. You do not need to ensure loaf_housing or loaf_billing.
ESX Only
- Run esx.lua
QBCore Only
Go to
qb-core/shared/jobs.lua
and add the following:["rea"] = {
label = "Real estate agent",
defaultDuty = true,
offDutyPay = false,
grades = {
["0"] = {
name = "Trainee",
payment = 75
},
["1"] = {
name = "Agent",
payment = 100
},
["2"] = {
name = "Manager",
payment = 150
},
["3"] = {
name = "Boss",
payment = 200,
isboss = true
},
},
},If you use qb-bossmenu instead of qb-management, go to
qb-bossmenu/config.lua
and add the following:["rea"] = vector3(8000.0, 0.0, -1000.0),
. Then, go toqb-bossmenu/accounts.json
and add the following:"rea":0
Dependencies
- loaf_billing (make sure to rename the folder to
loaf_billing
) - loaf_housing