# Installation

## Downloading Dependencies

Dependencies are very important — you need to install them before moving on to the installation of our script.

{% stepper %}
{% step %}

### OX\_LIB

{% embed url="<https://github.com/overextended/ox_lib>" %}
{% endstep %}
{% endstepper %}

***

## Server.cfg

All dependencies you’ve installed must be started before our script. Make sure to follow the correct start-up order in your `server.cfg`.

```
ensure ox_lib
ensure op-containerwars-props
ensure op-containerwars
```

***

## Permissions

It's important to grant your server administrators access to Start War CommandDon’t forget to check this Article:

{% content-ref url="tutorials/how-to-add-player-to-admin-list" %}
[how-to-add-player-to-admin-list](https://docs.otherplanet.dev/scripts/op-container-wars/tutorials/how-to-add-player-to-admin-list)
{% endcontent-ref %}

***

## Bob74\_ipl

bob74\_ipl resource is included on every Fivem server. This script spawn crane in place where our script spawn it as well. Follow below instructions to avoid Duplicating of Crane on Docks.

You Can download edited `bob74_ipl:`&#x20;

{% embed url="<https://data.otherplanet.dev/download/bob74_ipl-editedByOtherplanet.rar>" %}
This URL is 100% safe to use.
{% endembed %}

## Perfrom Edit manually:

{% stepper %}
{% step %}

### Find Correct Directory With Script.

By default bob74\_ipl is in this directory: `resources/[standalone]/bob74_ipl`
{% endstep %}

{% step %}

### Find `base.lua` file.

Navigate to: `gtav/base.lua`
{% endstep %}

{% step %}

### Find Correct Line.

Code Before:

```lua
-- Docks cranes: 887.7344, -2922.285, 34.000
RequestIpl("dockcrane1")
RequestIpl("pcranecont")
```

Code After:

```lua
-- Docks cranes: 887.7344, -2922.285, 34.000
-- RequestIpl("dockcrane1")
-- RequestIpl("pcranecont")
```

{% endstep %}

{% step %}

### Restart.

Restart your server.
{% endstep %}
{% endstepper %}
