Installation

Step 1: Download from Keymaster

Goto your Keymaster Granted Assets, search for the wise_faction script and download.


Step 2: Put into Resources

Open the wise_faction.pack.zip extract the wise_faction/ directory and move the directory into your resources/ directory on your server


Step 3: Database

If there are already tables existing, delete those with:

DROP TABLE IF EXISTS `wise_faction_factions`;
DROP TABLE IF EXISTS `wise_faction_garage`;

Do not start the Resource without adding the Tables to the Database first

CREATE TABLE `wise_faction_factions` (
	`name` VARCHAR(50) NULL DEFAULT NULL UNIQUE,
	`color` VARCHAR(50) NULL DEFAULT 'red',
	`settings` TEXT NULL,
	`members` TEXT NULL,
	`accounts` TEXT NULL,
	`warehouse` TEXT NULL,
	`ranksettings` TEXT NULL,
	`logs` LONGTEXT NULL,
	`position` TEXT NULL,
	`progress` TEXT NULL,
	`missions` TEXT NULL
);

CREATE TABLE `wise_faction_garage` (
	`faction` VARCHAR(50) NULL DEFAULT NULL,
	`name` VARCHAR(50) NULL DEFAULT NULL,
	`plate` VARCHAR(50) NULL DEFAULT NULL UNIQUE,
	`vehicle` LONGTEXT NULL,
	`stored` INT NULL
);

Step 4: Start Resource

Now implement the resource into the server.cfg with ensure wise_faction, restart your server and done.


Step 5: Enjoy!

Last updated