# Getting Started

## Installing&#x20;

## Package is currently under re write and cannot be installed!

Firstly, you’ll need to install the lates version of the package, you can do so by typing the following in the console `npm i discord-vr@latest`

{% hint style="info" %}
If required, you can install any other version, but it may be unstable and there will be less or no support to that version!&#x20;
{% endhint %}

Once the package is installed, copy or follow the code down below to set up Discord-VR:

```javascript
const { Client } = require("discord.js");
const client = new Client();
const { DVRClient } = require("discord-vr");
const dvrclient = new DVRClient({
    client,
    userID: "1234567890",
    rewardAmount: 150,
    port: 3000
});

client.login("token");
```

More information on the DVRClient options can be found under Advanced Set-Up section.


---

# 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://discord-vr.js.org/master.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.
