easyPOS
easyPOS
  • Welcome
  • Product Terms
  • Getting Started
    • Logging into the website
    • Enabling http requests
  • Products
    • easyExpress
      • Adding it to your game
      • Configuration
    • CafePOS
      • Adding it to your game
      • Adding admin commands
      • Order Handler
        • Editing the orderable items
        • Service hold whitelist
      • Kitchen Visual Displays
        • Bumpbar whitelist
      • Points of Sale
        • Screen whitelist
        • Power whitelist
        • Receiving payments via proximity prompts
      • Kiosks
        • Power whitelist
        • Receiving payments via proximity prompts
      • Using custom GUIs
    • CafePOS - MOS
      • Adding it to your game
      • Configuration
Powered by GitBook
On this page
  • Startup
  • ClaimGui
  • AutoRemoveOrders
  • MaxItems
  • MaxQuantity
  • MaxOrders
  • StoreName
  • HandTo
  1. Products
  2. CafePOS

Order Handler

PreviousAdding admin commandsNextEditing the orderable items

Last updated 4 months ago

Location of Settings

Go to the 'Order Handler', open 'Runtime_OH' then double click on 'Settings'.

All of the basic settings have a rough explanation stating what they do.

Startup

Settings.Startup = 1

1 = Full Startup (Default)

2 = Instant Startup

3 = Powered Off (Or instant if not possible)

ClaimGui

Settings.ClaimGui = true

Setting this to true will result in players who claim an order seeing a GUI similar to what is below.

To disable it, set ClaimGui to false.

AutoRemoveOrders

Settings.AutoRemoveOrders = 15 -- Minutes

This setting will automatically remove orders after the specified amount of minutes.

For example, setting this to 15 will result in any orders not completed after 15 minutes will be automatically removed.

MaxItems

Settings.MaxItems = 20

This setting will determine how many individual items can be added to an order.

This is not affected by quantity, this is just how many items can be added.

This cannot be higher than 20 due to technical limitations.

MaxQuantity

Settings.MaxQuantity = 2

This setting will determine how many of each item someone can add to their order.

MaxOrders

Settings.MaxOrders = 20

This setting will determine how many orders a single player can have at once.

We recommend keeping this number low to avoid trollers, such as 1 or 2.

StoreName

Settings.StoreName = "Store Name"

This setting will determine what is shown on the EFT Readers and Receipts.

HandTo

Settings.HandTo = {
    Enabled = true,
    Required = false
}

Enabled is whether items will be automatically moved from the person who claimed to the person who ordered upon order completion.

Requiredis whether the person who claimed must have all items before the order can be completed, otherwise it will fetch the tools from ServerStorage["CafePOS Tools"] (if not in inventory).

Looking for orderable items? Check .

this page
Locating the Order Handler settings
Basic settings overview
ClaimGui Example