Skip to content

Using Multiple Clothing Packs

Quick answer

Packs do not know about each other. Each one adds its collections to the same server-wide budget, and each one's documentation only describes itself. The combination is your responsibility.

Difficulty: Intermediate · Affects: both

INFO

Search: multiple packs, several packs, pack a pack b, conflicts, combine, load order.

What stacks and what does not

BehaviourReality
YMT slotsStack across every started resource
TxdStore entriesStack server-wide
Alternate variationsStack server-wide
Global drawable IDsAssigned by load order — they shift when packs change
Item names and categoriesIndependent — two packs can both call something "hoodie"

Two packs can each be comfortably under every internal limit and still crash the server together. That is the normal case, not a defect in either pack.

Load order matters, but not for capacity

ensure order determines where each collection lands in the global drawable index. Change the order and saved outfits point at different clothes.

ini
ensure zaiders_streetwear
ensure zaiders_formal
ensure eup_uniforms

Lock this order and document it. Reordering is not a crash fix — it is an ID lever, and using it casually breaks player wardrobes. See Clothing IDs & Outfit Shifts.

Common mistakes

WARNING

Merging folders

Copying three packs' stream/ contents into one resource folder does not merge their collections. The YMT files still load individually and still cost the same slots. Real merging requires repacking.

WARNING

Trusting per-pack documentation

A pack that says "uses 2 YMT slots" is telling the truth about itself and nothing about your server. Only your own budget is authoritative.

WARNING

Blaming the newest pack

The pack installed last is usually just the one that crossed the line. Removing it fixes the symptom and hides the fact that you are at capacity.

A workable policy for multi-pack servers

  • Maintain one written clothing budget, updated on every install.
  • Prefer fewer, larger packs over many small ones — the slot cost is per collection, not per item.
  • Keep ensure order fixed and version-controlled.
  • Decide the game build deliberately, since it sets the ceiling for everything else.
  • Test both genders after every clothing change.

Support for Zaiders Store FiveM clothing packs.