# Configuring Your EAS


# 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

This will be displayed on the controller screen.


Example:

["SiteName"] = "Cardiff Bay Shopping Centre"

# ClockEnabled

Whether to display your game's time.


Example:

["ClockEnabled"] = false

# Login

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

  • Applegate_VoCoVo: (bool) Integration with VoCoVo by Applegate. Set to false if not using.

  • Kybo_Walvo: (bool) Integration with Walvo by Kybo. Set to false if not using.


Example:

["AutomaticIntegrations"] = {
	["Applegate_VoCoVo"] = false,
	["Kybo_Walvo"] = true,
}

# Accounts

# 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