Features


Board Customization

All board customization is done via the Online Customizer.

To access this feature, select the CUSTOMIZE option from the main menu. You will be provided a link to the webpage where you can begin customizing the following components:

  • Board Color
  • Nearby Status Color
  • Online Status Color
  • Offline Status Color
  • Position Title Text Color
  • Username Text Color
  • Position Title Text (Job/Title Description)
  • Set Alternate Username Text

All changes you apply using the customizer are automatically applied to your online indicator.


Changing the Picture

If you would like to change the picture on the board, select the Change Pic option from the main menu. You will be presented with a text box where you can paste the texture UUID.

Where do I find the texture UUID?
You can obtain the texture UUID by right-clicking on the texture in your inventory and selecting "Copy UUID".


If you wish to replace the default texture that is displayed on the board when it's in an unassigned state, such as displaying a company logo, you can do so by visiting the settings section; Settings / Splash Logo and input the texture UUID that you wish to apply. Once set, if a user is unassigned from the board, the Splash Logo will be displayed.


Contact Preferences

By default, the system allows users to page & send messages. If you would like the option to receive notecards, you can enable the mail option in Preferences / Mail ON.

Smart Mail Delivery

When a notecard has been received, the system will handle the mail based on the users online status.

  • If online, the system will automatically forward the mail to the tracked user.
  • If offline, the mail will be kept in the system until the trakced user is back online at which point it will notify the user that they have mail available. The next time the user visits the region, the system will automatically send the mail to the user conveniently in a folder: MAIL DELIVERY - 2020-04-05

API Output

This was a feature request implemented in v2.0.3

The Executive Online Indicator now has an output API which can be enabled in the Settings menu. When enabled, each time the tracked user's status changes, a message will be posted to a specific channel which can be heard by your own objects:

  • Online: user_online,user_UUID
  • Offline: user_offline,user_UUID

LSL Example:

integer api_channel = -701;
integer api_handle;

default
{
    state_entry() {
        api_handle = llListen(api_channel,"","","");
    }

    listen(integer channel, string name, key id, string message) {
        if (channel == api_channel) {
            list vars = llCSV2List(message);
            string data = llList2String(vars,0);
            key user_UUID = llList2Key(vars,1);

            llOwnerSay("Status: " + data + " (User UUID: " + (string)user_UUID + ")");
        }
    }
}