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

Last updated