Add the following to Zeus's init field
// Key 59 is F1
this addEventHandler
[
"CuratorObjectRegistered",
{
nul = [] spawn
{
waitUntil {!(isNull (findDisplay 312))};
(findDisplay 312) displayAddEventHandler
[
"keyDown",
{
params ["_displayorcontrol", "_key", "_shift", "_ctrl", "_alt"];
if (_key == 59) then
{
systemChat str "Hello";
};
}
];
};
}
];