Skip to content

Bunker Access Conditions

Control the required steps before the underground bunker entrance opens:

lua
Config.bunkerEntrance = {
    conditions = {
        hackedEMP               = true,
        electricityDone         = true,
        outsideContainersLooted = true,
    }
}
ConditionEffect when true
hackedEMPAll EMP blockers must be hacked before the entrance unlocks
electricityDoneThe electricity minigame must be completed
outsideContainersLootedAll outdoor shipping containers must be looted

Set any condition to false to skip that requirement.

Police Requirements

The heist also requires a minimum number of police officers online before players can start:

lua
Config.police = {
    jobNames    = { 'police' },
    onlineCount = 1,
}

Add additional job names if your server uses custom police jobs. Set onlineCount = 0 to disable the requirement entirely.

Robicore