Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- INSERT INTO `addon_account` (name, label, shared) VALUES
- ('society_transistep', 'Transistep', 1)
- ;
- INSERT INTO `addon_inventory` (name, label, shared) VALUES
- ('society_transistep', 'Transistep', 1),
- ('society_transistep_depot', 'Transistep Dépôt', 1)
- ;
- INSERT INTO `datastore` (name, label, shared) VALUES
- ('society_transistep', 'Transistep', 1)
- ;
- INSERT INTO `jobs` (name, label) VALUES
- ('transistep', 'Transistep')
- ;
- INSERT INTO `job_grades` (job_name, grade, name, label, salary, skin_male, skin_female) VALUES
- ('transistep', 0, 'recrue', 'Recrue', 0, '{}', '{}'),
- ('transistep', 1, 'transporter', 'Transporteur', 0, '{}', '{}'),
- ('transistep', 2, 'boss', 'Boss', 0, '{}', '{}')
- ;
- CREATE TABLE `convoy_list`
- (
- id INT(11) NOT NULL
- );
- INSERT INTO `convoy_list` (id) VALUES
- (1),
- (2),
- (3),
- (4),
- (5),
- (6),
- (7),
- (8); -- add as many as you want
- CREATE TABLE `convoy_registered_list`
- (
- `convoy_id` INT(11) NOT NULL,
- `identifier` VARCHAR(60) NOT NULL,
- `is_trailer_stored` BOOLEAN,
- `is_paid` BOOLEAN
- );
- -- Only if you are not using my customized esx_advanced_garage
- -- -> https://github.com/Skulrag/unknown-story/tree/master/resources/%5Bscripts%5D/%5Bdivers%5D/esx_advancedgarage
- -- ALTER TABLE owned_vehicles
- -- ADD put_by varchar(255),
- -- in_garage_type varchar(255);
- -- /!\ Make sure you have all these columns in owned_vehicles => owner, vehicle, plate, type, job, stored, in_garage_type, put_by
Advertisement
Add Comment
Please, Sign In to add comment