Disable Locations
Whether you're optimizing performance or customizing your server’s map layout, you can disable individual Fleeca Bank branches included in the TStudio Fleeca Pack.
Each location has its own streamed folder and a corresponding entry in config.lua
. Disabling is quick and consists of two simple steps.
🧩 Step 1: Disable in config.lua
config.lua
Open:
tstudio_zmapdata/config.lua
Scroll to the
Config.Interiors
section.Locate the array item (inside square brackets
[]
) for the location you want to disable.Set:
enabled = false
✅ Example:
To disable Vinewood, update:
[1] = {
enabled = false,
name = "v_genbank",
coords = vec3(-355.435852, -48.5326, 48.1063843)
},
💡 Tip: Use the
coords
to identify which location is which.
🗑️ Step 2: Delete Folder from Stream
Go to:
tstudio_fleeca/stream/
Delete the folder matching the disabled location (e.g.
loc1_Vinewood
)
🧼 This prevents the assets from being streamed, improving performance and reducing memory usage.
✅ Example: Keep Only Legion Square
Set
enabled = false
for all locations except Legion SquareOnly keep the folder
loc3_Legionsquare
Delete all others:
loc1_Vinewood
,loc2_Vinewood_Lower
,loc4_Moviestudio
,loc5_easthighway
,loc6_route68
📍 Fleeca Bank Locations
Location
Folder Name
Coords (in config.lua
)
Vinewood
loc1_Vinewood
vector3(-355.43, -48.53, 48.10)
Vinewood (Lower Level)
loc2_Vinewood_Lower
vector3(309.74, -277.64, 53.23)
Legion Square
loc3_Legionsquare
vector3(145.42, -1039.27, 28.44)
Movie Studio
loc4_Moviestudio
vector3(-1216.76, -333.00, 36.85)
East Highway
loc5_easthighway
vector3(-2962.59, 478.24, 14.77)
Route 68
loc6_route68
vector3(1179.74, 2706.99, 37.16)
⚠️ Important Notes
Always delete the corresponding stream folder when setting
enabled = false
Leaving folders present may cause unintended prop/collision loading
All Fleeca locations are optimized to run simultaneously, but you can disable any combination
Last updated