#
Configuring Your EAS
This page isn't ready... How did you even end up here!
#
Syntax
#
SystemConfig
Your default configuration, found in JSM | Intelli-Sense EAS -> JSM | Controller -> Settings, is structured as follows:
--[[
_______ __ ___
/ / ___// |/ /
__ / /\__ \/ /|_/ /
/ /_/ /___/ / / / /
\____//____/_/ /_/
EAS System
© Whitehill Group
]]--
local Settings = {
-----------------------------------------------------------------
["SiteName"] = "Whitehill Group",
["ClockEnabled"] = true,
-----------------------------------------------------------------
["Login"] = {
["LowestAccessLevel"] = "Employee",
["SCOv3Location"] = nil,
},
["AutomaticIntegrations"] = {
["Applegate_VoCoVo"] = false,
["Kybo_Walvo"] = false,
},
}
return Settings
#
SiteName
string
This will be displayed on the controller screen.
Example:
["SiteName"] = "Cardiff Bay Shopping Centre"
#
ClockEnabled
bool
Whether to display your game's time.
Example:
["ClockEnabled"] = false
Note: It will display the game time, not the player's time.
#
Login
{ [string]: string | Folder? }
For additional security, it is recommended to only log in with an operator barcode.
LowestAccessLevel: (
"Administrator" | "Manager" | "Employee") Lowest access level via the Operator Barcode. (See Accounts Configuration for more info.)SCOv3Location: (
Folder?) Set to the SCO v3.1 root folder if you plan on using shared accounts.
Example:
["Login"] = {
["LowestAccessLevel"] = "Manager",
["SCOv3Location"] = workspace["JSM | SelfCheckout V3"],
}
#
AutomaticIntegrations
{ [string]: bool }
Applegate_VoCoVo: (
bool) Integration with VoCoVo by Applegate. Set tofalseif not using.Kybo_Walvo: (
bool) Integration with Walvo by Kybo. Set tofalseif not using.
Example:
["AutomaticIntegrations"] = {
["Applegate_VoCoVo"] = false,
["Kybo_Walvo"] = true,
}
#
Accounts
For a detailed guide, see SelfServ SCO Accounts Configuration page. The EAS Accounts and SCO Accounts are identical.
#
Finalizing
Now, using the examples provided, a complete Settings module will look as follows:
--[[
_______ __ ___
/ / ___// |/ /
__ / /\__ \/ /|_/ /
/ /_/ /___/ / / / /
\____//____/_/ /_/
EAS System
© Whitehill Group
]]--
local Settings = {
-----------------------------------------------------------------
["SiteName"] = "Cardiff Bay Shopping Centre",
["ClockEnabled"] = false,
-----------------------------------------------------------------
["Login"] = {
["LowestAccessLevel"] = "Manager",
["SCOv3Location"] = workspace["JSM | SelfCheckout V3"],
},
["AutomaticIntegrations"] = {
["Applegate_VoCoVo"] = false,
["Kybo_Walvo"] = true,
},
}
return Settings
Configuration Complete!
Not working? Make sure you followed the syntax, or visit our FAQ Page for help, or contact Whitehill Support via our Discord server for further assistance.