Step 3 - [ESX] Changes

Download esx_context

For older ESX versions, you need to change some things in esx_context. If you have no idea what to do, join my Discord and open a support ticket. I'll help you.

Next, you need to check if your "users" table has an column named "last_seen". If not, insert this SQL.

ALTER TABLE users
ADD `last_seen` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp();

Last updated

Was this helpful?