So I just added the real estate agent job to my server. But the problem is when I try to sell an house or rent an house I get this issue, I cannot even exit the menu for sell/rent

Have you installed the server file as well? It looks like the resource may have been installed incorrectly.

By server files if you mean the server/main.lua then yes. I also injected the realestatreagentjob.sql Only changes I made to the script was change the locale to en

Attempt a reinstall of the resource, see if that resolves the issue.

Ive reinstalled esx_realestateagentjob already and it did not resolve anything

esx_property/client/main.lua Line 768:

CurrentActionMsg  = _U('press_to_exit')

The _U function is attempting to reference an entry in the active locale file; here is the one from the English locale for reference:

['press_to_exit'] = 'press ~INPUT_CONTEXT~ to exit the property',

This implies there is an issue with the locale; try changing it back to whatever it comes with as default (French?), see if that corrects the issue.

This is my line 768 That does not seem like the issue

AddEventHandler('esx_property:getProperties', function(cb)
	cb(GetProperties())
end)
````lua

RegisterNetEvent('esx:playerLoaded')
AddEventHandler('esx:playerLoaded', function(xPlayer)
	ESX.TriggerServerCallback('esx_property:getProperties', function(properties)
		Config.Properties = properties
		CreateBlips()
	end)
end)
This is my GetProperties function 

function GetProperties()
	return Config.Properties
end

Are you using this resource?

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.