Brunx
  • Home
  • Cinema System
    • Installation
    • Configuration
      • Language
      • Setting up cinema
      • Setting up store
      • Keybinds and commands
    • Frameworks
      • Client guide
      • Server guide
    • Exports and events
      • Client events
      • Server events
      • State bags
  • Ice-O-Rink System
    • Installation
    • Configuration
      • Ice Skates
      • Language
      • Setting up controls
      • Setting up wardrobe
      • Setting up peds
      • Setting up store
      • Keybinds and commands
    • Frameworks
      • Server guide
    • Inventorys
      • Server guide
      • Items
    • Exports and events
      • Server exports
      • Server events
      • State bags
Powered by GitBook
On this page
  1. Ice-O-Rink System
  2. Configuration

Ice Skates

To make the skates work properly on your server, you first need to identify the correct shoe number (index) used by your clothing system. Since the skates are an addon item, the number may vary depending on your server's base or mods.

✅ Setup Steps:

  1. Go to your clothing store (where players change clothes).

  2. Equip the skates or find their appearance.

  3. Note down the shoe index for the skates.

  4. In the config below, update the numbers section with the correct values:

    • mp_f_freemode_01 = female character.

    • mp_m_freemode_01 = male character.

brnx-iceorinksystem/modules/config/config.lua
config.shoes = {
    numbers = {
        [`mp_f_freemode_01`] = 100, -- insert your female skate shoe index here
        [`mp_m_freemode_01`] = 141  -- insert your male skate shoe index here
    },

🎨 Skate Colors

The colors section defines the color indexes used by the addon. Do not edit this part unless you're customizing the addon files.

brnx-iceorinksystem/modules/config/config.lua
    colors = {
        ['white'] = 0,
        ['yellow'] = 1,
        ['cyan'] = 2,
        ['red'] = 3,
        ['pink'] = 4,
        ['green'] = 5,
        ['black'] = 6
    }

Photo of how to see the shoe number

PreviousConfigurationNextLanguage

Last updated 19 days ago