You must read and configure the config.lua file in is_garage to meet your needs.
Step 2 - Import SQL
You can import the is_garage.sql file included with the received script or use the following command in the database
CREATETABLE `is_garage` (`id`int(11) NOT NULL AUTO_INCREMENT,`owner` longtext,`model`varchar(50),`hash`bigint(20),`vin`varchar(50),`plate`varchar(25),`status` longtext,`parked` longtext,`fuel`int(11),`engine`int(11),`body`int(11),`distance`float(10,2),`mods` longtext,PRIMARY KEY (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;CREATETABLE `is_garage_codes` (`id`int(11) NOT NULL AUTO_INCREMENT,`type`varchar(100),`code`varchar(100),`package`int(11),`count`int(11),PRIMARY KEY (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;CREATETABLE `is_garage_keys` (`id`int(11) NOT NULL AUTO_INCREMENT,`identifier`varchar(100),`name`varchar(100),`vin`varchar(100),`favorite`tinyint(1),PRIMARY KEY (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;ALTERTABLE`is_garage`MODIFY`id`int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=84;ALTERTABLE`is_garage_codes`MODIFY`id`int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12;ALTERTABLE`is_garage_keys`MODIFY`id`int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=66;COMMIT;
Step 3 - Tebex Integration
Log in to your Tebex account, go to your project, and then:
Open the Integrations tab and select Game Servers.
If you don't have a created Server, click Connect Game Server and choose the PLUGIN connection type. Then, you'll need to specify the Server Name and click Select All next to Packages.
If you have an existing Server, make sure it has the properties mentioned above.
Click Edit on Your Server and then click Copy in the Secret Key tab.
Then, in your server, go to server.cfg and insert this line, replacing yourKey with the copied key:
setr sv_tebexSecret yourKey
Step 4 - Package Integration
Log in to your Tebex account, go to your project, and then:
Go to the Packages tab and create your resource.
Once you've done that, go to the package you created.
The link to the page you are on should look like this: https://creator.tebex.io/packages/0000000, where the digits at the end of the link represent your package's ID - copy them.
In your server, go to is_garage/config.lua and create a new table in cfg.Tebex.packages. It should look like the following:
{id =0, chars =8}, -- id - Copied Package Id, chars - Maximum Characters in Plate
Now, anyone with the specified resource will be able to use it in the game by referencing the transaction, tbx-xxxxxxxxx.
Step 5 - Converting Vehicles
To transfer your Vehicles from Old Garages, simply use the in-game command convertVehicles or the one set in config.lua, and then restart the script. After this, all vehicles from supported frameworks will be added to our Garage System.