7 lines
296 B
Lua
7 lines
296 B
Lua
|
lib.callback.register('ps-housing:client:getclientdata', function(data)
|
||
|
return {
|
||
|
street = GetStreetNameFromHashKey(GetStreetNameAtCoord(data.coords.x, data.coords.y, data.coords.z)),
|
||
|
region = GetLabelText(GetNameOfZone(data.coords.x, data.coords.y, data.coords.z))
|
||
|
}
|
||
|
end)
|