CLOTHING
Clothing & EUP

How to Set Up a Clothing Store (Illenium-Appearance)

February 16, 2024 · 4 min read

Setting up a clothing store in your FiveM server can be an exciting way to enrich your roleplay experience and provide players with the ability to customize their characters. Utilizing the Illenium-Appearance script streamlines this process by offering a user-friendly interface and various customization options. In this guide, we’ll explore how to set up a clothing store (Illenium-Appearance) step by step.

Understanding the Illenium-Appearance Script

The Illenium-Appearance script is designed for use in FiveM, allowing players to customize their character’s appearance and clothing easily. It integrates seamlessly with popular frameworks like ESX and QBCore, enhancing gameplay by granting players a more personalized gaming experience.

Prerequisites for Setup

Before diving into the setup process, ensure you have the following ready:

  1. A running FiveM server with ESX or QBCore/Qb-Core framework.
  2. Basic understanding of server file structures.
  3. Access to your server files through an FTP client or a control panel.

Getting Started with the Illenium-Appearance Script

To begin, you need to download and install the Illenium-Appearance script. Follow these steps:

Step 1: Download the Script

  1. Head to your source for FiveM scripts (such as Fivemania).
  2. Search for Illenium-Appearance and download the latest version.

Step 2: Installing the Script

  1. Unzip the downloaded file.
  2. Place the unzipped folder into your resources directory on your server. It should look like this:
    resources/illenium-appearance/
    
  3. Open your server.cfg file located in the root of your server.
  4. Add the following line to ensure the script starts on server launch:
    start illenium-appearance
    

Step 3: Configuring the Script

The Illenium-Appearance script has configuration settings you may want to customize. Locate the config.lua file within the script directory. Here are a few settings you might want to adjust:

  • clothingPrices: Set the specific prices for different clothing items.
  • enableFashionPass: A boolean value to allow or disallow the fashion pass feature.

Example snippet:

Config.clothingPrices = { 
    shirt = 100,  
    pants = 150,
    shoes = 80,
}

Adjust these according to your gameplay requirements.

Creating the Clothing Store Locations

Next, you need to define where players can access the clothing store. If you’re using MLO maps, you can place the store wherever suitable. If not, you can use predefined locations like:

  • Clothing Store (Mission Row)
  • Clothing Store (Vespucci Beach)

Step 1: Using MLO Maps

If you want to create a high-quality shopping experience, consider using MLO maps from Fivemania's MLO Maps collection. These maps provide immersive environments for your clothing store setup.

Step 2: Adding Store Blips

To make your clothing store easily identifiable on the map:

  1. Open your client/main.lua file within the Illenium-Appearance folder.
  2. Add a blip for your store location:
    local blip = AddBlipForCoord(x, y, z)  
    SetBlipSprite(blip, 73) -- or any icon of your choice
    SetBlipDisplay(blip, 4)  
    SetBlipScale(blip, 0.8) 
    SetBlipColour(blip, 2) -- color of your choice
    BeginTextCommandSetBlipName('STRING')
    AddTextComponentString('Clothing Store')
    EndTextCommandSetBlipName(blip)
    

Make sure to adjust x, y, and z to your store's coordinates.

Testing Your Setup

Once you’ve installed and configured everything, it's crucial to test your clothing store:

  1. Restart your server or use the command to restart the Illenium-Appearance script.
  2. Join your server and navigate to the clothing store location.
  3. Check if you can access the clothing options and if the prices are correctly displayed.
  4. Test different clothing items to ensure they change your character's appearance.

Troubleshooting Common Issues

If you run into issues during setup, here are some common problems and their resolutions:

  • Script Not Loading: Ensure you added start illenium-appearance in the server.cfg.
  • Missing Items: Check the config.lua for the correct item definitions and ensure they are present in your database.
  • Location Issues: Double-check your coordinates for blips and ensure they are within the map boundaries.

Frequently Asked Questions

How do I change the prices of clothing items?

You can change clothing prices directly in the config.lua file within the Illenium-Appearance script directory.

Can I add custom clothing items?

Yes, you can add custom clothing by defining them in the database and linking them to the script.

Does this script work with QBCore?

Absolutely! The Illenium-Appearance script is compatible with both ESX and QBCore frameworks.

Where can I get high-quality MLO maps for my clothing store?

You can explore various MLO maps available in the Fivemania MLO Maps section to find suitable options for your store.

Setting up a clothing store (Illenium-Appearance) can significantly enhance your FiveM server's roleplay experience. By following these steps and utilizing the configuration options, you'll be well on your way to creating a unique shopping experience for your players.

#fivem#clothing store#illenium-appearance#roleplay#scripts

Keep reading