๐Ÿ”’SickJail

(Video is VERY outdated and from the start of this project. Just an EXAMPLE of whats to come!)

Welcome to SickJail. SickJail is a VERY interactive jail system for your Cities!

There are lots of different things you are able to do with it.

Ranging from Gang system to legal jobs.

There is a ton of options built in to the jail to give your players more to do while they do hefty sentences!

SQL:

There are a few things you will need to do before using the script!

Make sure you do this before starting the script! This stores the info you will need while Jail is running

CREATE TABLE IF NOT EXISTS `sickPrisonGangs` (
    `id` int(11) NOT NULL AUTO_INCREMENT,
    `identifier` varchar(60) DEFAULT NULL,
    `gang` varchar(250) DEFAULT NULL,
    `reputation` smallint(6) NOT NULL DEFAULT 0,
    PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=304 DEFAULT CHARSET=latin1 ROW_FORMAT=DYNAMIC;

ALTER TABLE users ADD COLUMN 'jail' int(15) NOT NULL DEFAULT 0;

Items:

Add all items to Ox_Inventory/data/items.lua

Items = {
    
	['prison_meal'] = {
		label = 'Prison Meal',
		weight = 150,
		stack = true,
		close = true,
		description = 'Yummm prison food'
	},

    ['ingredients'] = {
		label = 'Ingredients',
		weight = 150,
		stack = true,
		close = true,
		description = 'Idk you figure it out'
	},

    ['marlborocig'] = {
		label = 'Marlboro Cig',
		weight = 150,
		stack = true,
		close = true,
		description = 'Mmmm the burn in your lungs!'
	},

    ['mud'] = {
		label = 'Mud',
		weight = 150,
		stack = true,
		close = true,
		description = 'A NASTY susbstance'
	},

    ['hooch'] = {
		label = 'Hooch',
		weight = 150,
		stack = true,
		close = true,
		description = 'Still Nasty but better'
	},

    ['rotten_oranges'] = {
		label = 'Rotten Oranges',
		weight = 150,
		stack = true,
		close = true,
		description = 'These were left out a little long'
	},

    ['drugbag'] = {
		label = 'Drug Bag',
		weight = 150,
		stack = true,
		close = true,
		description = 'The Ole Prison Wallet'
	},

	['plastic'] = {
		label = 'Plastic Pieces',
		weight = 150,
		stack = true,
		close = true,
		description = 'I\'m sure you can find a use'
	},

	['wood'] = {
		label = 'Drug Bag',
		weight = 150,
		stack = true,
		close = true,
		description = 'Setting fires, making shanks'
	},
	
	['shovel'] = {
		label = 'Shovel',
		weight = 150,
		stack = true,
		close = true,
		description = 'Digging you know'
	},

	['cup_of_noodles'] = {
		label = 'Cup Of Noodles',
		weight = 150,
		stack = true,
		close = true,
		description = 'Yummmm the Best Ever'
	},
}

Other Info: