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
  • Location of Settings
  • LogoId
  • InteractWhitelist
  • EngineerWhitelist
  • Drinks
  • DripTray
  • WaterTank
  1. Products
  2. easyExpress

Configuration

PreviousAdding it to your gameNextCafePOS

Last updated 8 months ago

Location of Settings

Go to the 'easyExpress v2.0' folder, open 'Runtime' then double click on 'Settings'.

LogoId

Settings.LogoId = "http://www.roblox.com/asset/?id=13957858284"

This setting will determine the logo shown on the access and maintenance frames.

InteractWhitelist

Settings.InteractWhitelist = {
	List = {
		{
			["Group ID"] = 32675391,
			["Minimum Rank"] = 100,
		},
		{
			["Group ID"] = 12345678,
			["Minimum Rank"] = 50,
		},
	},
}

This setting will determine who can make drinks using the machine.

The example above showcases how multiple groups should be added to the config.

EngineerWhitelist

Settings.EngineerWhitelist = {
	List = {
		{
			["Group ID"] = 32675391,
			["Minimum Rank"] = 200,
		},
		{
			["Group ID"] = 12345678,
			["Minimum Rank"] = 150,
		},
	},
}

This setting will determine who can access the settings page and other maintenance related functions.

The example above showcases how multiple groups should be added to the config.

Drinks

Settings.Drinks = {
	{
		["Name"] = "Water", -- Ensure there's a tool in "ServerStorage.easyExpress Drinks" named this
		["Image"] = "http://www.roblox.com/asset/?id=16767204649",
		["Fill"] = {
			[1] = { Name = "Water", Amount = 100, Color = Color3.fromRGB(141, 182, 247) },
		}
	},
	{
		["Name"] = "Hot Chocolate", -- Ensure there's a tool in "ServerStorage.easyExpress Drinks" named this
		["Image"] = "http://www.roblox.com/asset/?id=16767204649",
		["Fill"] = {
			[1] = { Name = "Water", Amount = 75, Color = Color3.fromRGB(141, 182, 247) },
			[2] = { Name = "Milk", Amount = 25, Color = Color3.fromRGB(255, 255, 255) },
		}
	},
}

This setting will determine which drinks can be made with the machine.

The example above showcases how multiple drinks should be added to the config, as well as different liquids in the fill method.

DripTray

Settings.DripTray = {
	EmptyRequired = true,
	EmptyCount = 15,
}

If you want to make emptying the drip tray required, set EmptyRequired to true.

EmptyCount is how often the tray should be emptied.

WaterTank

Settings.WaterTank = {
	RefillRequired = true,
	RefillCount = 10,
}

If you want to make refilling the water tank required, set RefillRequired to true.

RefillCount is how often the tank should be refilled.

Locating the easyExpress settings