Generate VIN for Vehicles


If you have a server running and players are already registered, you need to generate VIN numbers for your players' vehicles. Below you will find the points you need to go through to do this.

  1. Database

Make sure to add the vin column to your users table using the .sql file provided with the script

ALTER TABLE `owned_vehicles` ADD COLUMN `vin` varchar(17) DEFAULT NULL;

  1. Generate VIN's

Now you can use the _generatevin command in your server console.

  1. Final

When the process is complete, you will get this message in your console:

This means that the generation of VIN numbers has been completed, it is recommended to restart the server.

Last updated

Was this helpful?