Skip to main content

Installation Steps

1

Install required dependencies

Verify all dependencies below are started before this script in your server.cfg.

ox_lib

Download ox_lib

K4MB1 Panache Map

Required map by K4MB1

bl_ui

Required minigame resource

projectx-bridge

Required Project X Bridge
2

Install minigames

Install bl_ui into your standalone or dependencies folder.

bl_ui

Download and place in your standalone or minigames folder
Make sure minigames are not in the same folder as the robbery script.
3

Extract and place the resource

Extract the script from the zip file and place it into your scripts folder.
4

Add items to your inventory

Add the required items and their images to your inventory resource. See the items section below for the full list.
Item images done by Artwork Inventory - Use code ProjectX for 10% off!
5

Configure the resource

Open config/config.lua and adjust the settings to match your server. The bridge handles framework, inventory, dispatch, and interaction automatically if set to 'auto'.
6

Add to server.cfg

Make sure the bridge, ox_lib, your target, dispatch, inventory, minigames, and mka-lasers are all started before the robbery script.
ensure ox_lib
ensure projectx-bridge

ensure mka-lasers
ensure bl_ui

ensure projectx-laundromatrobbery-k4mb1

Items Required

Items Required from Outside the Robbery

The laundromatkey must be obtained externally before the robbery can be started.
  • laundromatkey

Items Required from Shop/Black Market

  • x_cratejammer
  • x_device
  • bag
Clothing loot items (x_shirt, x_shirt_pile, x_overalls, x_towel, x_hat) are obtained within the robbery itself.

Item Configuration

["x_cratejammer"] = {
    label = "X Crate Jammer",
    weight = 300,
    stack = false,
    close = false,
    description = "?????????",
},
['x_device'] = {
    label = "X Device",
    weight = 50,
    stack = false,
    close = false,
    description = "?????????",
},
['bag'] = {
    label = "Bag",
    weight = 400,
    stack = false,
    close = false,
    description = "Duffel bag",
},
['laundromatkey'] = {
    label = "Laundromat Key",
    weight = 400,
    stack = false,
    close = false,
    description = "Laundromat Key",
},
['x_shirt'] = {
    label = "Shirt",
    weight = 200,
    stack = false,
    close = false,
    description = "A Shirt",
},
['x_shirt_pile'] = {
    label = "Pile of shirts",
    weight = 800,
    stack = false,
    close = false,
    description = "Pile of shirts",
},
['x_overalls'] = {
    label = "Overalls",
    weight = 200,
    stack = false,
    close = false,
    description = "Overalls",
},
['x_towel'] = {
    label = "A Towel",
    weight = 200,
    stack = false,
    close = false,
    description = "A Towel",
},
['x_hat'] = {
    label = "A Hat",
    weight = 200,
    stack = false,
    close = false,
    description = "A Hat",
},