The error message says that you are missing parenthesis so that narrows it down quite a bit. You're trying to call the function "Start()" without parenthesis, all functions must have this.
Code: ags
function CarbonsOffice_OnClick(GUIControl *control, MouseButton button)
{
dCarbonOffice.Start(); // See the difference here
}