LV Soft FiveM
  • LV SOFT
    • 👋Welcome!
    • 🛒Tebex
    • 💬Discord
  • QB/ESX
    • ☮️lvs-loading
      • Installation
      • Configuration
    • 👫lvs-multichar
      • Installation
      • Configuration
      • Adding Scenes
      • Tebex Integration
      • Commands
    • 🗺️lvs-spawnselector
      • Installation
      • Configuration
    • 🥼lvs-clothing
      • Installation
        • QBCore Install
        • ESX Install
      • Configuration
      • Migration
        • qb-clothing
        • esx-skinchanger
        • Illenium-Appareance
      • Blacklisting
      • Events
      • Commands
    • ⚙️lvs-lib
      • black-screen loading
      • notifications
      • progressbar
      • key-interaction
      • textui
      • alert
      • context menu
      • context input
    • 💬lvs-chat
      • Installation
      • Configuration
      • Events & Exports
    • 📱lvs-radio
      • Installation
      • Configuration
      • Events & Exports
    • 🗃️lvs-playerlist
      • Installation
      • Configuration
    • 📹lvs_weazelnews
      • Installation
      • Configuration
    • 🎒lvs-inventory
      • Installation
      • Configuration
      • lvs-inventory
        • exports
      • lvs-shops
        • Configuration
        • Exports
      • lvs-crafting
    • 🪪lvs-idmanager
      • Installation
      • Configuration
      • Exports
  • Standalone
    • 🚘lvs-drift
      • Installation
      • Configuration
      • Commands
    • 🕺lvs-animations
      • Installation
      • Configuration
      • Adding Animations
      • Exports/Events
    • 💥lvs-accident
      • Installation
      • Configuration
    • 🔥lvs-explosion
      • Installation
      • Configuration
    • 🏎️lvs-racing
  • ESX
    • 📅Soon
Powered by GitBook
On this page
  • Step 1
  • Step 2
  • Step 3
  • Step 4
  • Step 5
  • Step 6
  1. QB/ESX
  2. lvs-multichar

Installation

Step 1

Run the qb.sql file located in the resource folder in your database! Or execute the SQL:

CREATE TABLE `lvs_multichar` (
  `id` int(11) NOT NULL,
  `license` varchar(90) DEFAULT NULL,
  `uses` int(11) DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

-- --------------------------------------------------------

CREATE TABLE `lvs_multichar_codes` (
  `id` int(11) NOT NULL,
  `code` varchar(50) DEFAULT NULL,
  `used` int(11) DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

-- --------------------------------------------------------

ALTER TABLE `lvs_multichar`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `identifier` (`license`);

ALTER TABLE `lvs_multichar_codes`
  ADD PRIMARY KEY (`id`) USING BTREE;


ALTER TABLE `lvs_multichar`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

ALTER TABLE `lvs_multichar_codes`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

Step 2

Drag And Drop, put lvs_multichar in resources folder


Step 3

Remove qb-multicharacter from [qb] folder


Step 4

Install the dependencies if they are not installed.

oxmysql

ox_lib


Step 5

Now configure and translate your resource.

Config files

/lvs_mutichar/config/config.lua /lvs_mutichar/config/cutscenes.lua /lvs_mutichar/config/translations.lua /lvs_mutichar/config/clothing.lua


Step 6

Start the script in server.cfg , ensure lvs_multichar.

Previouslvs-multicharNextConfiguration

Last updated 7 months ago

👫
https://github.com/overextended/oxmysql
https://github.com/overextended/ox_lib