# BeanMachine Job

```lua
Verpix = {}

Verpix.DropMessage = 'You are stupid F-You!'

Verpix.EnableSeats = true
Verpix.JobName = 'beanmachine'


Verpix.ProgressBar = {
    Drinks = {
        label = 'Pouring: ',
        duration = 5000
    },
    Donuts = {
        label = 'Taking: ',
        duration = 5000
    },
    Coffee = {
        label = 'Taking: ',
        duration = 5000
    },
    MakingCoffee = {
        label = 'Making: ',
        duration = 10000
    }
}

Verpix.Glasses = {
    Lang = {
        LabelThirdEye = 'Cup',
        Ox_Lib_Title = 'Cups',
    },
    Glasses = {
        {label = 'Cup', description = 'Cup for drinks', image = 'https://cdn.discordapp.com/attachments/1101147585047187568/1102318417781981254/cup.png', addItem = 'cup'},
    }
}

Verpix.Drinks = {
    Lang = {
        LabelThirdEye = 'Drinks',
        Ox_Lib_Title = 'Drinks',
        Notify = 'You dont have required items'
    },
    Drinks = {
        {label = 'CocaCola', description = 'Pour 1 cocacola', image = 'https://cdn.discordapp.com/attachments/1101147585047187568/1102318811144781905/cocacola.png', removeItem = 'cup', addItem = 'cocacola'},
        {label = 'Pepsi', description = 'Pour 1 pepsi', image = 'https://cdn.discordapp.com/attachments/1101147585047187568/1102319127990894642/pepsi.png', removeItem = 'cup', addItem = 'pepsi'},
        {label = 'Fanta', description = 'Pour 1 fanta', image = 'https://cdn.discordapp.com/attachments/1101147585047187568/1102321634053988442/fanta_2.png', removeItem = 'cup', addItem = 'fanta'},
    }
}

Verpix.Coffee = {
    Lang = {
        LabelThirdEye = 'Coffee Seeds',
        Ox_Lib_Title = 'Coffee',
        ThirdEyeMakeCoffee = 'Make Coffee',
        MakingCoffeeOx = 'Making Coffee',
        Notify = 'You dont have required items'
    },
    Coffee = {
        {label = 'Coffee Seeds', description = 'Coffee Seeds', image = 'https://cdn.discordapp.com/attachments/1101147585047187568/1102326463115575497/coffee_seeds.png', addItem = 'coffee_seeds'},
    },
    MakeCoffee = {
        {label = 'Coffee', description = 'Coffee Seeds', image = 'https://cdn.discordapp.com/attachments/1101147585047187568/1102326524268519475/coffee.png', removeItem = 'coffee_seeds', addItem = 'coffee'},
    }
}

Verpix.Donuts = {
    Lang = {
        LabelThirdEye = 'Donuts',
        Ox_Lib_Title = 'Donuts',
        Notify = 'You dont have required items'
    },
    Donuts = {
        {label = 'Chocolate Donut', description = 'Get 1x Chocolate donut', image = 'https://cdn.discordapp.com/attachments/1101147585047187568/1102327538669326356/choco_donut.png', addItem = 'choco_donut'},
        {label = 'Pink Donut', description = 'Get 1x Pink donut', image = 'https://cdn.discordapp.com/attachments/1101147585047187568/1102328440335634564/pink_donut.png', addItem = 'pink_donut'},
    }
}


Verpix.Billing = {
    Lang = {
        LabelThirdEye = 'Bill Player',
        InvaildId = 'Not valid ID!',
        InvaildAmount = 'Not valid Amount!'

    },
    Dialog = {
        Title = 'Bill',
        Id = 'ID-Player',
        Amount = 'Amount?'
    }
}
```


---

# 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://verpix.gitbook.io/script-beanmachine-job/beanmachine-job.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.
