> For the complete documentation index, see [llms.txt](https://vt-developmets.gitbook.io/vt-scripts/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://vt-developmets.gitbook.io/vt-scripts/our-scripts/our-paid-scripts-qb/surfing/installation/surfing-important..md).

# Surfing Important.

Important information for you.

> ## <mark style="color:blue;">Changes to fxmanifest</mark>

{% hint style="info" %}
**If you are using ox\_lib change the following code**
{% endhint %}

> **This**

```lua
--Shared
shared_scripts {
    --'@ox_lib/init.lua', -- If you don't use ox_lib and you don't use ox_lib comment this. If you use ox_lib uncomment it.
    "shared/*.lua",
}
```

> **Change it like this.**

```lua
--Shared
shared_scripts {
    '@ox_lib/init.lua', -- If you don't use ox_lib and you don't use ox_lib comment this. If you use ox_lib uncomment it.
    "shared/*.lua",
}
```

> ## <mark style="color:blue;">Changes for ox\_lib / ox\_target</mark>

{% hint style="info" %}
**Config changes for ox\_lib context and ox\_target**
{% endhint %}

> **This**

```lua
System = {
                     Support = 'QB', -- Support to "QB" for NEW QBCore, "OX" for ox_target/ ox_lib
                  TargetName = 'qb-target',  -- This is a change to your resource name, namely target, the original one which is QBCore
                      menu   = 'qb-menu', -- This is a change to your resource name, namely menu, the original one which is QBCore
                      close  = 'qb-menu:closeMenu', -- This is a change to your resource name, namely menu, the original one which is QBCore
  },
```

> **Change it like this.**
>
> *<mark style="color:red;">**This automatically changes the behavior of qb-menu and qb-target to the behavior of ox\_lib and ox\_target**</mark>*

```
System = {
                     Support = 'OX', -- Support to "QB" for NEW QBCore, "OX" for ox_target/ ox_lib
                  TargetName = 'qb-target',  -- This is a change to your resource name, namely target, the original one which is QBCore
                      menu   = 'qb-menu', -- This is a change to your resource name, namely menu, the original one which is QBCore
                      close  = 'qb-menu:closeMenu', -- This is a change to your resource name, namely menu, the original one which is QBCore
  },
```

## <mark style="color:blue;">Changes for ox\_inventory</mark>

{% hint style="info" %}
**Config changes for ox\_inventory**
{% endhint %}

> **This**

```lua
  ShopsSupport               = 'qb-inventory', -- "qb-inventory" for NEW QBCore or "ox_inventory" for Overextended Inventory
  InventorySupport           = 'false', -- If you use ox_inventory and want stores to work set this to "true"
```

> **Change it like this.**

```lua
  ShopsSupport               = 'ox_inventory', -- "qb-inventory" for NEW QBCore or "ox_inventory" for Overextended Inventory
  InventorySupport           = 'true', -- If you use ox_inventory and want stores to work set this to "true"
```
