# Tattoo

**The tattoo script is a ready-to-use plugin for VORP. You need to apply the tattoo.sql file and run the script.**

<mark style="color:orange;">**This script is not encrypted/escrow; it is fully modifiable.**</mark>

<mark style="color:green;">Here is an excerpt from the config.lua file : (parts of the excerpt are hidden)</mark>

```lua
Config = {}
Config.DEBUG = true -- All Tattoo price 1$ when you buy it

Config.NPCModel = "mp_u_m_m_traderintroclerk_01"

Config.ShowBlips = true -- true->Show/false->Hide blips
Config.BlipName = "Tatoueur"
Config.BlipSprite = 2017085833
Config.DeleteAllTattooOption = true -- true->Show/false->Hide Delete All Tattoo Option
Config.OnlyOneTattoo = false -- true -> The player can buy only one tattoo for their character, and they are not entitled to a second chance.
Config.UpdateTattooEveryMinute = false -- true -> will update every minute, you can try if you encounter some problem with women textures sync

Config.Shops = { -- PNJ vendeur
    {
        NPC = { x = 2720.2, y = -1290.25, z = 59.29, h = 20.1 },
        STOOL = { x= 2719.0, y = -1288.2, z = 59.34 }
    }
}

Config.ColorPrice = 50

Config.TattooColors = {
    "Black",
    "Red",
    "Blue",
    "Blood",
    "Purple",
    "Yellow"
}

Config.TattooColorsValue = {
    120, -- Black
    1, -- Red
    100, -- Blue
    150, -- Blood
    220, -- Purple
    110 -- Yellow
}
-- this content is hidden in the excerpt
```


---

# 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://botiv.gitbook.io/rdr2/tattoo.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.
