📃Installation

Installation for KS-Garage

1

DRAG AND DROP

Drag KS-Garage into your resources folder.

2

Ensure the script is started in your server.cfg

ensure KS-Garage

3

Import the SQL file provided into your database

CREATE TABLE IF NOT EXISTS `owned_vehicles` (
  `owner` varchar(255) DEFAULT NULL,
  `slot` varchar(46) DEFAULT NULL,
  `plate` varchar(12) NOT NULL,
  `vehicle` longtext DEFAULT NULL,
  `type` varchar(20) NOT NULL DEFAULT 'car',
  `stored` tinyint(4) NOT NULL DEFAULT 0,
  `parking` varchar(60) DEFAULT NULL,
  `pound` varchar(60) DEFAULT NULL,
  `vehicleData` text DEFAULT NULL,
  `glovebox` longtext DEFAULT NULL,
  `trunk` longtext DEFAULT NULL,
  PRIMARY KEY (`plate`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
4

Install dependencies if not already present:

5

Configure the script in the KS-Garage/shared/config.lua file based on your server's needs.

📬 Need Help or Support?

If you have any questions, need help with setup, or want to report a bug, feel free to join our support Discord:

👉 Join our Discord server

We're happy to help and welcome all feedback and suggestions!

Last updated