Home API Manuals About Forum
Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Back to homepage

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;
end.