Docs
Real Estate Panel

Real Estate Panel

The Real Estate Panel features a property management system that allows the agency to manage property displays and availability seamlessly, making them accessible to all players on the server.

Real Estate Panel

Configuration

The Real Estate Panel can be configured in two ways:

  • Using a Live Google Sheet (provided in the package)
  • Using a local JSON file

Using a Google Sheet

The configuration file is located at g-tablet/core/configs/appRealEstate.json.

appRealEstate.json
{
  "useGoogleSheets": true, // Whether to use a Google Sheet or JSON for the properties data
  "propertiesPerPage": 24, // The number of properties to display per page
  "SheetsProperties": "Google_Sheet_URL", // The URL of the Google Sheet containing the properties data
  "SheetsPropertiesLocal": "./data/realestate.json" // The local path to the properties data file
}

Using a local JSON file

If you choose to use local JSON instead of Google Sheets, you can use the the configuration file located at g-tablet/core/data/realestate.json.

realestate.json
[
  {
    "id": "1",
    "name": "Cayo Villa",
    "availability": "🟢 Available",
    "type": "🏡 Villa",
    "location": "Cayo Perico",
    "phone": "555-01337",
    "price": "2 347 330$",
    "rental": "$3400/week",
    "agency": "Dynasty 8",
    "option1": "🛋️ Furnished",
    "option2": "🗄️ Vault 3000",
    "option3": "🚘 20 Parking",
    "location_y": "-52",
    "location_x": "-20",
    "image": "./estates/properties/villas/cayo.webp",
    "agency_icon": "./estates/agency/dynasty8.webp"
  },
  {
    "id": "2",
    "name": "Liberty Villa",
    "availability": "🟢 Available",
    "type": "🏡 Villa",
    "location": "Los Santos, Vinewood",
    "phone": "555-30301",
    "price": "876 520$",
    "rental": "$1,200/week",
    "agency": "Dynasty 8",
    "option1": "🛋️ Furnished",
    "option2": "🗄️ Vault 1000",
    "option3": "🚘 10 Parking",
    "location_y": "43",
    "location_x": "-126",
    "image": "./estates/properties/villas/liberty_villa.webp",
    "agency_icon": "./estates/agency/dynasty8.webp"
  },
  // ...
]