QBESXStandalone
Agency-Housing एक्सपोर्ट और API
FiveM के लिए डेटाबेस-आधारित हाउसिंग सिस्टम, जो ESX, QBCore और QBox को अपने आप पहचान लेता है। घर कॉन्फ़िग फ़ाइल के बजाय.
v1.79.0सशुल्क5 पेज

01Client Exports
| एक्सपोर्ट | विवरण |
|---|---|
IsInsideHouse() | Returns true while the player is inside a house. |
GetCurrentHouse() | The house the player is currently inside, or nil. |
LeaveHouse() | Puts the player back outside through the entrance. |
GetHouseAtPoint(coords) | The first house whose property border owns this ground. |
GetHousesAtPoint(coords) | Every house owning this ground, for overlapping plots such as an apartment block. |
GetCurrentProperty() | The plot the player is standing on right now, or nil. |
IsOnProperty(houseId) | Whether the player stands on the property of that house. |
GetHouseZone(houseId) | The stored border shape of a house. |
GetAccent() | The accent colour the player picked in Housing > Settings. |
02Server Exports
| एक्सपोर्ट | विवरण |
|---|---|
GetHouses() | Every house on the server, keyed by id. |
GetPlayerHouses(source) | The houses that player owns. |
HasHouseAccess(source, houseId) | Whether that player owns the house or holds a key to it. |
GetHouseAtPoint(coords) | The first house whose property border owns this ground. |
GetHousesAtPoint(coords) | Every house owning this ground, for overlapping plots. |
GetHouseZone(houseId) | The stored border shape of a house. |
03इवेंट
| नाम | साइड | विवरण |
|---|---|---|
agency-housing:client:enteredZone | Client | Fires with (houseId, house) when the player steps onto a property, so a job or robbery script does not have to poll. |
agency-housing:client:leftZone | Client | Fires with (houseId, house) when the player leaves a property. |