> For the complete documentation index, see [llms.txt](https://docs.dolajiscripts.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.dolajiscripts.com/resources/ds-atmrobbery.md).

# ds-atmrobbery

<figure><img src="/files/wWdY8CSxundHwDgkYzrZ" alt=""><figcaption></figcaption></figure>

[<mark style="color:purple;">**View on Tebex**</mark>](https://dolajiscripts.com/package/5299504) <mark style="color:purple;">**|**</mark> [<mark style="color:purple;">**CFX Fourm Post**</mark>](https://youtu.be/nihdezKcZgI) <mark style="color:purple;">**|**</mark> [<mark style="color:purple;">**Youtube Video**</mark>](https://youtu.be/4HZUSkXbtKU) <mark style="color:purple;">**|**</mark> [<mark style="color:purple;">**Discord**</mark>](https://discord.gg/vhF9ke3hJG)

## Installaction

### Dependencies

| Dependency                                                | Download                                           | Description               |
| --------------------------------------------------------- | -------------------------------------------------- | ------------------------- |
| [**VOLTlab**](https://github.com/ultrahacx/ultra-voltlab) | [Link](https://github.com/ultrahacx/ultra-voltlab) | Voltlab Hacking Minigame. |

### Start

* Extract `ds-atmrobbery.zip` and place it into your resource folder.
* Install and ensure [dependencies](#dependencies) for the resource.
* Setup`config.lua` (⚠️see [#CONFIGURATION](#configuration) for instructions).&#x20;
* Add `ensure ds-atmrobbery` to your server start config (place it anywhere below the dependency & framework resources).

### Configuration

{% hint style="warning" %}
Please go through **all** configurable options & settings in `config.lua`and configure them to your server's preferences.

Also please read the comments at the end of each line, for a brief information on what the option does.&#x20;
{% endhint %}

### **Add Items**

{% tabs %}
{% tab title="QBCore" %}
{% code lineNumbers="true" %}

```lua
['thermite'] = {
    ['name'] = 'thermite', 			  			
    ['label'] = 'Thermite', 				
    ['weight'] = 1000, 		
    ['type'] = 'item', 		
    ['image'] = 'thermite.png', 			
    ['unique'] = false, 	
    ['useable'] = true, 	
    'shouldClose'] = true,    
    ['combinable'] = nil,   
    ['description'] = 'Sometimes you\'d wish for everything to burn'
},

['drill'] = {
    ['name'] = 'drill', 			    		
    ['label'] = 'Drill', 					
    ['weight'] = 20000, 	
    ['type'] = 'item', 		
    ['image'] = 'drill.png', 				
    ['unique'] = false, 	
    ['useable'] = false, 	
    ['shouldClose'] = false,   
    ['combinable'] = nil,   
    ['description'] = 'The real deal...'
},

```

{% endcode %}
{% endtab %}

{% tab title="ESX" %}

```sql
INSERT INTO items (name, label, weight, rare, can_remove) VALUES ('drill', 'Drill', 1, 0, 1), ('thermite', 'Thermite', 2, 0, 1);
```

{% endtab %}

{% tab title="Images" %}
[Download link](https://cdn.discordapp.com/attachments/932109362623832146/1019911735609655347/images.rar)
{% endtab %}
{% endtabs %}
