> For the complete documentation index, see [llms.txt](https://xakra-scripts.gitbook.io/xakra-scripts-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://xakra-scripts.gitbook.io/xakra-scripts-docs/redm-docs/xakra_fivefingerfillet.md).

# xakra\_fivefingerfillet

## Requirements

* Standalone

***

## Installation

1. Copy the script into a folder (to choose) from the 'resources' folder.
2. Add 'ensure xakra\_fivefingerfillet' in the 'Resources.cfg' document

***

## Config & Framework

<details open>

<summary>config.lua</summary>

{% code expandable="true" %}

```lua
Config = {}

Config.Language = 'es'  -- choose the language from the languages folder ('es', 'en'...)

-- Colors: https://github.com/femga/rdr3_discoveries/tree/master/useful_info_from_rpfs/colours
Config.ScoreTimer = {
    Time = 30,  -- seconds (Time that the minigame will last)
    LeftColor = 'COLOR_GREEN',
    RightColor = 'COLOR_GREENDARK',
}

-- Keys: https://github.com/femga/rdr3_discoveries/tree/master/Controls
Config.Keys = {
    Seat = 'INPUT_INTERACT_OPTION1',    -- G
    StartDuel = 'INPUT_CREATOR_ACCEPT', -- ENTER
    Practice = 'INPUT_INTERACT_OPTION1',    -- G
    GoOut = 'INPUT_GAME_MENU_CANCEL',   -- BACKSPACE
    Flourish = 'INPUT_INTERACT_OPTION1',    -- G
    Zoom = 'INPUT_INSPECT_ZOOM',    -- MOUSE RIGHT CLICK

    Finger1 = 'INPUT_FRONTEND_UP',  -- UP ARROW
    Finger2 = 'INPUT_FRONTEND_LEFT',    -- LEFT ARROW
    Finger3 = 'INPUT_FRONTEND_DOWN',    -- DOWN ARROW
    Finger4 = 'INPUT_FRONTEND_RIGHT',   -- RIGHT ARROW
    Finger5 = 'INPUT_FRONTEND_LEFT',    -- LEFT ARROW
    Finger6 = 'INPUT_FRONTEND_DOWN',    -- DOWN ARROW
}

Config.KeyFingersRandom = false -- true (enable random keys) or false (disable random keys)

Config.SetScale = true -- true (While the player is sitting the character will have a scale of 1.0) or false (The character will have the default scale, but it may cause visual problems with shorter or taller characters)

-- Blips: https://github.com/femga/rdr3_discoveries/tree/master/useful_info_from_rpfs/textures/blips
-- Colors modifiers: https://github.com/femga/rdr3_discoveries/tree/master/useful_info_from_rpfs/blip_modifiers
Config.Locations = {
    {   -- VALENTINE
        Name = 'Juego de cuchillos',
        KnifeObject = 'w_melee_knife18',
        Table = { Coords = vector3(-243.72, 771.27, 117.08), Heading = 20 },
        Blip = { Enable = true, Name = 'blip_mg_five_finger_fillet', Color = 'BLIP_MODIFIER_MP_COLOR_11' },
        Chairs = { Freeze = true, Model = 'p_windsorchair03x' },
    },
    {   -- BLACKWATER
        Name = 'Juego de cuchillos',
        KnifeObject = 'w_melee_knife18',
        Table = { Coords = vector3(-816.36, -1324.49, 46.87), Heading = 180 },
        Blip = { Enable = true, Name = 'blip_mg_five_finger_fillet', Color = 'BLIP_MODIFIER_MP_COLOR_11' },
        Chairs = { Freeze = true, Model = 'p_windsorchair03x' },
    },
    {   -- VAN HORN
        Name = 'Juego de cuchillos',
        KnifeObject = 'w_melee_knife18',
        Table = { Coords = vector3(2939.35, 526.74, 44.35), Heading = 90 },
        Blip = { Enable = true, Name = 'blip_mg_five_finger_fillet', Color = 'BLIP_MODIFIER_MP_COLOR_11' },
        Chairs = { Freeze = true, Model = 'p_windsorchair03x' },
    },
    {   -- SAINT DENIS
        Name = 'Juego de cuchillos',
        KnifeObject = 'w_melee_knife18',
        Table = { Coords = vector3(2790.91, -1171.64, 46.92), Heading = 60 },
        Blip = { Enable = true, Name = 'blip_mg_five_finger_fillet', Color = 'BLIP_MODIFIER_MP_COLOR_11' },
        Chairs = { Freeze = true, Model = 'p_windsorchair03x' },
    },
    {   -- STAWBERRY
        Name = 'Juego de cuchillos',
        KnifeObject = 'w_melee_knife18',
        Table = { Coords = vector3(-1826.18, -433.99, 158.93), Heading = 70 },
        Blip = { Enable = true, Name = 'blip_mg_five_finger_fillet', Color = 'BLIP_MODIFIER_MP_COLOR_11' },
        Chairs = { Freeze = true, Model = 'p_windsorchair03x' },
    },
}
```

{% endcode %}

</details>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://xakra-scripts.gitbook.io/xakra-scripts-docs/redm-docs/xakra_fivefingerfillet.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
