# Installation

## Setup - 1: Drag And Drop

Drag "<mark style="color:red;">404-OfflinePlayersV2</mark>" into your resources folder.

### Setup - 2: Run Sql

```sql
CREATE TABLE IF NOT EXISTS `offline_players` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `citizenid` varchar(50) DEFAULT NULL,
  `coords` varchar(100) DEFAULT NULL,
  `model` int(11) DEFAULT NULL,
  `disconnect_time` int(11) DEFAULT NULL,
  `steam` varchar(255) DEFAULT NULL,
  `skin` text DEFAULT NULL,
  `reason` varchar(255) DEFAULT NULL,
  `robbed` tinyint(1) DEFAULT 0,
  `cleaned` tinyint(1) DEFAULT 0,
  `inVehicle` tinyint(1) DEFAULT 0,
  `vehicle_data` TEXT DEFAULT NULL,
  PRIMARY KEY (`id`) USING BTREE,
  UNIQUE KEY `citizenid` (`citizenid`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=758 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
```

## Setup - 3: Ensure Folder In Server Cfg

```
ensure 404-OfflinePlayersV2
```


---

# 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://errorscripts.gitbook.io/errorscript/products/404-offlineplayersv2/installation.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.
