# vRP FAQ

## Stuck on Awaiting Scripts?

You forgot to install the base resources! Find them here:&#x20;

{% embed url="<https://github.com/citizenfx/cfx-server-data>" %}

## How do I hide the MoneyUI?

You can hide that in the configuration file found in sharedcfg/options.lua

## How do I hide the UI under the minimap?

You can hide that in the configuration file found in sharedcfg/options.lua

## How do I disable buying vehicles on the RageUI Garages?

You can disable that in the configuration file found in sharedcfg/options.lua

## How do I disable the preview of vehicles on the RageUI Garages?

You can disable that in the configuration file found in sharedcfg/options.lua

## How do I disable the vRP Phone?

Doing this isn't recommended but you can just go into vrp/client/gui.lua Comment out lines: 146 to 156

![](https://i.gyazo.com/8e6180145d81a870f4b2cab127292245.png)

## How do I make vRP scripts?&#x20;

Well, remember to follow the guides on how to use the Proxy found within[ Proxy Documentation ](/fivem-guides/dunko-vrp/proxydocs.md#how-to-begin)

To make resources: <https://docs.fivem.net/docs/scripting-manual/introduction/creating-your-first-script/>

## Where do I find a tutorial to setup the pack?

{% embed url="<https://youtu.be/ja5nz-3Lh34>" %}

## Why won't my Zap Hosting work?

Zap hosting versions as of 15/03/2021 are out of date. You should manually install this via manual FTP transfer and reinstall the dunko pack from the github repository.

## How do I change my keys from numpad

Well, to change the accept NUMPAD + or NUMPAD - response&#x20;

You'll need to change the following lines:

Firstly, this line of code to your desired keys you have chosen:

{% embed url="<https://github.com/DunkoUK/dunko_vrp/blob/master/vrp/gui/RequestManager.js#L16>" %}

Line 16 of vrp/gui/RequestManager.js

Then once you have done that you will need to find your key on here:&#x20;

{% embed url="<https://docs.fivem.net/docs/game-references/controls/>" %}

Then save the number index of the control!&#x20;

Then in vrp/cfg/client.lua you'll need to change this line:&#x20;

{% embed url="<https://github.com/DunkoUK/dunko_vrp/blob/master/vrp/cfg/client.lua#L31>" %}

Line 31 and Line 32 to your desired keys.&#x20;

Say I wanted to change it to - and =&#x20;

I'd do

```lua
  request = {
    yes = {1,83}, -- =
    no = {1,84} -- -
  }
```

And that is how you change your keys.&#x20;

## What to do when my connection is timing out and I am recieving database errors?

![](/files/-MYpztFTL6EhUnIqKUC0)

You can update your configuration to the above adding "connectTimeout", note this is in milliseconds and can be extended as required.&#x20;

This file is located at: ghmattimysql/config.json

## Console Commands

The following console commands for vRP exist:&#x20;

* addgroup&#x20;
* removegroup
* ban
* unban&#x20;

The following commands can be typed into the console above in which the console will reply with instructions on how to use these commands.&#x20;


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://jamesuk.gitbook.io/fivem-guides/dunko-vrp/faq.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
