SetUp
SQL:
ALTER TABLE owned_vehiclesADD COLUMNtwostep INT(11) NOT NULL DEFAULT '0';
Items:
If you are using Ox_inventory I have provided the needed code to add to items.lua. If you are not using Ox_inventory then use the provided sql to add the item to your DataBase!
INSERT INTO `items` VALUES (`name`,`label`,`weight`)
('2step', '2Step Module', 10),
('2step_checker', '2Step Module Checker', 10);['2step_checker'] = {
label = '2Step Module Checker',
weight = 1,
stack = true,
close = true,
description = 'Check A Vehicle for 2Step Modules',
client = {
export = 'Sick2Step.2step_checker'
},
},
['2step'] = {
label = '2Step Module',
weight = 1,
stack = true,
close = true,
description = 'Bang Bang',
client = {
export = 'Sick2Step.2step'
},
},