π οΈInstallation
Run the SQL:
CREATE TABLE `mCarRental_vehicles` (
`rental_id` int(11) NOT NULL PRIMARY KEY AUTO_INCREMENT,
`name` varchar(255) DEFAULT NULL,
`plate` varchar(255) DEFAULT NULL,
`label` varchar(255) DEFAULT NULL,
`category` varchar(255) NOT NULL,
`passengers` int(11) NOT NULL,
`top_speed` int(11) NOT NULL,
`price` int(11) NOT NULL,
`owner` varchar(255) DEFAULT NULL,
`owner_name` varchar(255) DEFAULT NULL,
`rental_owner` varchar(255) DEFAULT NULL,
`date_limit` varchar(255) DEFAULT NULL,
`available` int(1) DEFAULT NULL
);
CREATE TABLE `mCarRental_history`(
`identifier` varchar(255) NOT NULL,
`identifier_name` varchar(255) NOT NULL,
`vehicle_name` varchar(255) NOT NULL,
`type` varchar(255) NOT NULL,
`price` varchar(255) NOT NULL,
`days` varchar(255) NOT NULL,
`date` varchar(255) NOT NULL
);
ALTER TABLE owned_vehicles
ADD rental_owner VARCHAR(50) NOT NULL,
ADD rental_mods LONGTEXT NOT NULL,
ADD isRented int(1) NOT NULL;
ALTER TABLE users
ADD img_avatar LONGTEXT NOT NULL;
ALTER TABLE owned_vehicles
ADD model_name VARCHAR(50) NOT NULL;Snippets for Vehicleshops:
okokVehicleShop
Search Config.EventPrefix..':setVehicleOwned and replace with:
esx_vehicleshop
Search: esx_vehicleshop:setVehicleOwnedPlayerId and replace with:
Search: esx_vehicleshop:buyVehicle and replace with:
Last updated