SickScripts Documentation
SickScripts DiscordProject ALPHA DiscordTebex Store
  • Overview
    • 💡SickScripts
    • ✨Useful Links
    • 🎯Newest ESX
  • Shared Framework
    • 👮SickDirtyCops
      • Robbery Trigger
      • Installation
      • Config
      • Buy/Sell Shop
      • Updates
      • Custom Events
    • 🚗Sick2Step
      • SetUp
      • Usage
    • 🌱SickTrapHouses
      • Installation
      • Events
    • 🗒️SickWarrants
      • Events
      • Examples
    • 💣SickCarBombs
      • Items
      • Config
    • 📎SickLockers
      • Config
      • Events
      • QBCore Users
    • 💰SickMoneyWash
      • Usage
      • Config
    • 🗺️SickTeleport
      • Installation
      • Default Locations
      • Donators
      • Config
  • ESX Scripts
    • 🎟️SickFines-PEFCL
      • Events
    • 🧑‍💼SickTraders
      • Traders
    • 🌭SickFoodStands
    • 🍔SickUpNAtom
      • General info
      • Ordering
      • Job Info
      • Boss Menu
  • 🔒SickJail
    • Events/Exports
    • Examples
    • Jobs
    • Drug Bag
    • Prison Break
    • Stashes
  • 📄SickReports
    • Options
  • 🇫🇲SickSafeZones
    • Info
    • Music
    • AirDrops
    • ScrapCars
  • QBCore
    • 🏨SickApartmentSelect
Powered by GitBook
On this page
  1. Shared Framework
  2. Sick2Step

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'
	},
},
PreviousSick2StepNextUsage
🚗