๐Ÿ”งInstallation

Follow these steps to ensure the script works correctly.

1. Download

Grab the resource from your customer panel and extract it into your resources folder.

cd resources/
unzip origen_vehiclehandling.zip -d [origen]/origen_vehiclehandling

2. Import the database

The schema is located at database.sql in the root of the resource.

mysql -u your_user -p your_database < [origen]/origen_vehiclehandling/install.sql

Open HeidiSQL โ†’ connect to your database โ†’ File โ†’ Load SQL file โ†’ select database.sql โ†’ press F9 to execute.

The resource also auto-verifies the schema on every boot using server/classes/database.lua. If a table or column is missing it will be created automatically. The database.sql file is the source of truth โ€” keep it in sync if you change the data model.

3. Configure

Open config/general.lua and set your language:

Config.Debug    = false
Config.Language = 'en'  -- 'en' | 'es'

Last updated