> ## Documentation Index
> Fetch the complete documentation index at: https://docs.warpathstudios.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Bucket Organization

> Buckets organize saves by category for efficient loading and streaming.

### **What Are Buckets?**

Buckets organize saves by category for efficient loading and streaming.

### **Common Buckets**

| **Bucket Name**    | **Contents**                | **Load Timing** |
| ------------------ | --------------------------- | --------------- |
| `Players`          | Player inventory, equipment | On player spawn |
| `World_Containers` | Chest contents, storage     | On level load   |
| `Crafting`         | Crafting station state      | On level load   |
| `Custom`           | Your custom data            | As needed       |

### **Level Streaming**

Buckets support level streaming:

```
Main Level Loaded:
   ↓
Load "Players" bucket
   ↓
Player Spawns with saved data
   ↓
SubLevel_Forest Loaded:
   ↓
Load "World_Containers_Forest" bucket
   ↓
Chests populated with saved contents
```
