# tntwars

**.tntwars(UUID)**

Get tntwars information for a player on CubedCraft.

| Parameter | Type   | Required | Description                              |
| --------- | ------ | -------- | ---------------------------------------- |
| UUID      | string | true     | The UUID of the player you want info for |

**Example:**

```javascript
// Dependencies
const CubedCraft = require('cubed-api');

// Getting the player info
CubedCraft.API.player.tntwars('4de211d9-2e6d-41a8-830f-c20ba2359654').then(info => {
    console.log(info);
})
```

{% hint style="warning" %}
You can easily get a player's UUID with the [.playerUUID()](https://pondwadermc.gitbook.io/cubed-api/documentation/utils/playeruuid) method, view the documentation here: <https://pondwadermc.gitbook.io/cubed-api/documentation/utils/playeruuid>
{% endhint %}

**Example Response:**

```javascript
{
  player: {
    uuid: '4de211d9-2e6d-41a8-830f-c20ba2359654',
    username: 'PondWader',
    coins: 5460,
    kills: 2491,
    deaths: 1332,
    wins: 364,
    score: 7324,
    first_joined: 0,
    last_joined: 1618417747684,
    playtime: 236119254
  }
}
```


---

# 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://pondwadermc.gitbook.io/cubed-api/documentation/api/player/tntwars.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.
