okay, so here is the code, hilited:
// this is a javascript object:
var GatherRate = {
// this line creates the "GatherRate" object's "Enabled" property
// return true or false as boolean and not as string
get Enabled () { return DataStore.Get("GatherRate", "Enabled");},
get Rate...