EH-DOCUMENTATION
  • ERROR HUB
    • Welcome
    • Terms Of Service
    • Customer Service
    • Common Issues
    • FAQ
    • Discord Guide
  • OUR SCRIPTS
    • Advanced Cutscene
      • Installation
      • Configuration
        • Clothing
        • Multicharacter
          • Renzu Multicharacter
          • ZSX Multicharacter
        • QB-Apartment
        • Vehicle Keys
      • Events and Exports
      • Shared Files
    • Codekit
      • Installation
  • HOUSING SHELLS
    • Modern & Classic Mid Shell
Powered by GitBook
On this page
  1. OUR SCRIPTS
  2. Advanced Cutscene
  3. Configuration
  4. Multicharacter

Renzu Multicharacter

PreviousMulticharacterNextZSX Multicharacter

Last updated 2 months ago

If you're using renzu_multicharacter, you may need to make some additional modifications. Follow the instructions below based on your clothing script. If you're not using renzu_multicharacter, you can skip this section.

  1. Open config.lua located in the renzu_multicharacter folder.

  2. Find the line:

qb-clothing:client:openMenu
  1. Replace it with the following code:

qb-clothes:client:CreateFirstCharacter

After you replace the code follow the qb-clothing setup follow .

  1. Open main.lua located in the renzu_multicharacter/client folder.

  2. Find the line:

exports['illenium-appearance']:startPlayerCustomization(function (appearance)
  1. Just below finished = true (around line 433), insert the following trigger:

exports["eh_cutscene"]:start() -- > Start eh_cutscene
print('^2Started eh_cutscene')
This is how the modified client code should look like
this step