Wise Scripts Docs
ShopDiscord
  • 👋Welcome
  • 💻 Scripts
    • 🚙Wise Garage
      • Installation
      • Database
      • Events
      • Example Configs
        • Main
        • Garages
        • Impounds
    • 🖥️Wise Hud
      • Installation
      • Example Configs
        • Main
    • 🦌Wise Hunting
      • Installation
      • Example Configs
        • Main
        • Animals
        • Huntareas
        • Market
    • 🔫Wise Gungame
      • Installation
      • Setup for Ambulancejob
    • 👥Wise Faction
      • Installation
      • Exports
      • Events
      • Setup FFA & Gangwar
      • Example Configs
        • Main
        • FFA
        • Gangwar
        • Robbery
        • Shop
        • Missions
    • 🔔Wise Notify
      • Installation
      • Exports & Triggers
      • ESX Replacements
    • ⚠️Wise Report
      • Installation
    • 🎮Wise Lifeinvader
      • Installation
  • 🏡PROPS
    • 🪨Wise Ore Props Pack
    • ✨Wise Crystal Props Pack
  • 🧟‍♂️PEDS
    • 🎃HALLOWEEN Pumpkin Monster
    • 🎃HALLOWEEN MR Bright
Powered by GitBook
On this page
  • Step 1: Download from Keymaster
  • Step 2: Put into Resources
  • Step 3: Database
  • Step 4: Start Resource
  • Step 5: Enjoy!
  1. 💻 Scripts
  2. Wise Faction

Installation

PreviousWise FactionNextExports

Last updated 10 months ago

Step 1: Download from Keymaster

Goto your , 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!

👥
Keymaster Granted Assets