gpScripts Docs
StoreDiscordYoutube
  • 📔gpScripts
  • Clothingshop
    • Installation
    • Developers
      • Client
  • 💰InsuranceSystem
    • Installation
    • Developers
      • Client
      • Server
  • 📲Businesscards
    • Installation
    • Developers
      • Events
  • 🛡️visumsystem
    • Installation
    • Developers
      • Commands
      • Exports
      • Events
    • Code Snippets
      • QB-Garages
  • ☎️Emergencyphone
    • Installation
    • Common mistakes
      • Common mistakes
    • Developer
      • Events
  • 💵Tax-System
    • Installation
      • Step 1 - SQL-File
      • Step 2 - [QB-Core] Changes
      • Step 3 - [ESX] Changes
      • Step 4 - Restart your server
      • Step 5 - Set first deduction date
    • Exclude inactive vehicles
    • Common mistakes
      • Common mistakes
    • Developer
      • Events
Powered by GitBook
On this page

Was this helpful?

  1. Tax-System
  2. Installation

Step 3 - [ESX] Changes

PreviousStep 2 - [QB-Core] ChangesNextStep 4 - Restart your server

Last updated 2 years ago

Was this helpful?

Download

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();
💵
esx_context