Standard Library & Environment

BigC uses use to unlock engine features and attach to load pre-written logic from the Standard Environment (env_lib/).


1. Feature Modules (use)

Unlocks internal engine capabilities.


2. Standard Environment (attach)

Load these libraries to add new "Chapters" (functions) to your script.

📢 attach statement

Provides professional logging and status reporting.

🎲 attach picker

Simplifies random number generation.

🛠️ attach gethor

Handles environment setup and configuration checks.


3. Storage & Lockers (Maps)

Maps are dynamic "Lockers" for storing data by name.

# Create
get map & set as {Session}

# Set
map set "UserID" as "123" @{Session}

# Get
map get "UserID" of {Session} & set as {ID}

# Check
map check "UserID" of {Session} & set as {IsLoggedIn}