Amphitheater

You can dynamically switch between different setups for the Legion Square Amphitheater using the in-game /changesetup command. This command activates specific IPLs (Interior Proxy Libraries) based on the selected setup.

🛠️ Available Setups

Each setup has its own unique visual and functional style:

Setup Name
Description

default

Base/default setup

band

Band stage setup

dj

DJ performance setup

speaker

Speaker system setup

cinema

Removes all setups (clean stage)

📋 Usage

Open your in-game chat and type the following:

/changesetup [setup]

✅ Example Commands

/changesetup default
/changesetup band
/changesetup dj
/changesetup speaker
/changesetup cinema

If you type an invalid setup name or leave it empty, you'll get an error message:

Please specify a valid setup. Usage: /changesetup [default|band|dj|speaker|cinema]

🔄 What It Does Internally

  • Removes all active IPLs to ensure a clean switch.

  • Loads only the IPLs relevant to the selected setup.

  • If cinema is selected, all IPLs are removed for a clean slate.

💡 Developer Note

You can find or customize the available setups in the config.lua file, under this section:

local setups = {
    default = { 'tstudio_legionsquare_ext_amphi_default' },
    band = { 'tstudio_legionsquare_ext_amphi_band' },
    dj = { 'tstudio_legionsquare_ext_amphi_dj' },
    speaker = { 'tstudio_legionsquare_ext_amphi_speaker' },
    cinema = { -- removes all IPLs }
}

Last updated