Перейти к содержанию

Manage Vanilla Dlc

Материал из RAGE MP Wiki Archive

Managing Vanilla DLCs with `dlcpack_level.txt` and Custom `dlclist`

Overview

This feature allows server owners to specify the last permitted vanilla DLC for GTA V by setting it in the `/game_resources/dlcpack_level.txt` file, you can find a list dlc in codewalker. For example: <syntaxhighlight lang="plaintext"> patch2024_01 </syntaxhighlight>

Alternatively, a custom `dlclist.xml` can be used for advanced DLC management.

Benefits

  • Smooth GTA Updates: Prevents issues during future updates.
  • Custom Management: Custom `dlclist.xml` provides greater control and flexibility.

Usage

  1. Using `dlcpack_level.txt`:
  <syntaxhighlight lang="plaintext">
  //Example of what's in dlcpack_level.txt
  patch2024_01
  </syntaxhighlight>
  1. Using Custom `dlclist.xml`:
  * Add or modify entries in the custom `dlclist.xml`.
  * Overrides `dlcpack_level.txt` when present.

Recommendations

  • Use a custom `dlclist.xml` when possible for advanced management.
  • Ensure compatibility with future updates by regularly reviewing the settings.

See Also