a library to speed up the development of Fivem scripts and frameworks
fivem-ts - Documentation v0.7.5 • Docs
fivem-ts - Documentation v0.7.5 / Server / BucketLockdownMode
Enum representing the Lockdown Modes for a specific routing bucket.
One of the aforementioned modes. Sets the entity lockdown mode for a specific routing bucket.
Lockdown modes are:
strict
: No entities can be created by clients at all.relaxed
: Only script-owned entities created by clients are blocked.inactive
: Clients can create any entity they want.Inactive:
"inactive"
Clients can create any entity they want.
server/enums/BucketLockdownMode.ts:27
Relaxed:
"relaxed"
Only script-owned entities created by clients are blocked.
server/enums/BucketLockdownMode.ts:23
Strict:
"strict"
No entities can be created by clients at all.