Installation guide
Welcome to the Brutal Housing installation guide, here you can learn how to completely install our asset.
Asset download
Upload the SQL
CREATE TABLE IF NOT EXISTS `brutal_housing` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`type` text CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL,
`model` text CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL,
`theme` int(11) NOT NULL DEFAULT 0,
`previousOwner` text DEFAULT NULL,
`owner` text CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL,
`keyid` text DEFAULT NULL,
`phone` text DEFAULT '',
`isRented` int(11) DEFAULT 0,
`forSale` int(11) DEFAULT 1,
`rentable` int(11) DEFAULT 1,
`defaultPrice` int(11) DEFAULT NULL,
`purchasePrice` int(11) DEFAULT NULL,
`salePrice` int(11) DEFAULT NULL,
`label` text CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL,
`address` text CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL,
`url` text CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL,
`coords` text CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL,
`lastPaid` longtext DEFAULT NULL,
`messages` longtext CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL,
`furnitures` longtext DEFAULT NULL,
`securityData` longtext DEFAULT NULL,
`garage` int(11) DEFAULT 0,
`lastUpdated` text DEFAULT NULL,
UNIQUE KEY `Index 2` (`id`),
KEY `Index 1` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=armscii8 COLLATE=armscii8_bin;
CREATE TABLE IF NOT EXISTS `brutal_housing_estates` (
`job` text NOT NULL,
`balance` int(11) DEFAULT NULL,
`soldProperties` longtext DEFAULT '[]',
UNIQUE KEY `UNIQUE` (`job`(100)) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
CREATE TABLE IF NOT EXISTS `brutal_housing_garages` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`type` text NOT NULL,
`model` text DEFAULT NULL,
`theme` int(11) NOT NULL DEFAULT 0,
`previousOwner` text DEFAULT NULL,
`owner` text DEFAULT NULL,
`keyid` text DEFAULT NULL,
`phone` text DEFAULT '',
`isRented` int(11) DEFAULT 0,
`forSale` int(11) DEFAULT 1,
`rentable` int(11) DEFAULT 1,
`defaultPrice` int(11) DEFAULT NULL,
`purchasePrice` int(11) DEFAULT NULL,
`salePrice` int(11) DEFAULT NULL,
`label` text DEFAULT NULL,
`address` text DEFAULT NULL,
`url` text DEFAULT NULL,
`coords` text DEFAULT NULL,
`lastPaid` longtext DEFAULT NULL,
`messages` longtext DEFAULT NULL,
`vehicles` longtext DEFAULT NULL,
`house` int(11) DEFAULT NULL,
`lastUpdated` text DEFAULT NULL,
UNIQUE KEY `Index 2` (`id`),
KEY `Index 1` (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
ALTER TABLE `users`
ADD COLUMN `fav_property` TEXT NULL DEFAULT NULL COLLATE 'utf8_general_ci';Upload the items
Asset positioning
Setting up the Webhook

Setting the loaded event

Checking the Config file
Most important steps
PolyZone
Lockpicking Minigame
Break-in/Raid Minigame
Doorlock
Setting up the interiors
Download the preconfigured shells
Setting up the core
If you got any error
Last updated
