Migration

Installation guide and fundamental concepts of crm-appearance.

CoreM provides a Migration System to safely migrate player clothing and appearance data from illenium-appearance to crm-appearance. This allows you to switch without wiping or resetting player outfits.

The migration system is configured in: crm-appearance/crm-config/crm-config.lua

-- Migration System (Read documentation first!)
crm_config.crm_migration = {
    crm_enable = false,                 -- Enable migration mode
    crm_old_resource = 'illenium-appearance', -- Resource to migrate from
}

Migration Steps


1. Enable Migration

Set the resource you want to migrate from and enable migration: Currently, only illenium-appearance is supported as the old resource.

-- Migration System (Read documentation first!)
crm_config.crm_migration = {
    crm_enable = true,                 -- Enable migration mode
    crm_old_resource = 'illenium-appearance', -- Resource to migrate from
}

2. Restart the Script

Restart the crm-appearance resource

3. Wait for Migration

The system will automatically copy all player clothing and appearance data from the old resource.

  • Wait until the migration process is fully completed.

  • Do not stop the server while migrating.

4. Disable Migration

Once the migration is finished, disable migration mode:

Last updated