ESX_Identity loading problems

Im having a problem with identity on my server… when a new player loads in, the registration box appears initially on load on top of the disclaimer and the mouse doesnt work. you have to type in /register and the box disappears and reappears and the mouse becomes usable. is there a way to fix this?

I fixed this issue by changing

Citizen.Wait(500)

TO

Citizen.Wait(1000)

in the client main.lua


Also if you use esx_skin i changed this so that it does not load the skin menu until after your done creating your players identity.

if skin == nil then
TriggerEvent(‘skinchanger:loadSkin’, {sex = 0}, OpenSaveableMenu)
else
TriggerEvent(‘skinchanger:loadSkin’, skin)
end

TO

if skin == nil then
Citizen.Wait(10)
TriggerEvent(‘skinchanger:loadSkin’, {sex = 0})
else
TriggerEvent(‘skinchanger:loadSkin’, skin)
end

Doesn’t work @Emono
I added what you said and people still have to use /register… I have a disclaimer that pops up when ppl join as well…

Please do not create new topics for support/questions related to existing resources.

Only ask questions or request support in the original resource topic, or on whatever site/page you got the resource from (for example: create an issue on the GitHub page of the resource that you downloaded).

That way the original resource creator will get a notification and be able to help properly. This also helps to reduce duplicate topics of the same issue, because everything will be inside the original topic, allowing everyone to see all issues and solutions in one place.

Thanks for keeping the forums tidy.
:mascot: