Yes.
Code:
MCP command: ChangeOgreBotUIOption
Parameters:
ForWho (such as all, or ${Me.Name}, or a name)
checkbox_settings_enable_chatevents
TRUE (or FALSE, or TOGGLE)
Almost all of the OgreBotUI can be modified this way. To find the name of the object you want to modify, you can view or edit the file here: innerspace/scripts/eq2ogrebot/OgreUIXML.xml
Then search for what the words are in the UI, in this case, I searched for "Chat Events", which lead me to here:
Code:
<checkbox name='checkbox_settings_enable_chatevents' template='EQ2OB_Checkbox_Settings'>
<Text>Enable Chat Events</Text>
<OnLeftClick>
TabConfig.Settings:EnableChatEvents[${This.Name},${This.Checked}]
</OnLeftClick>
</checkbox>
As you can tell, this is a checkbox with the name (text) of 'Enable Chat Events'. This is the one you want. So you just use the "name='namehere'".