Connected
Returns status of the connection with the UO server: ‘True - connected, ‘False - not connected
Pascal
function Connected:boolean
Python
def Connected() -> Boolean
Example Pascal
program test;
begin
if not Connected then
begin Connect;
wait(10000);
end;