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

Disconnect

Disconnects the current character from the UO server.

If the character is already disconnected, the method does nothing.

Отключает текущего персонажа от сервера UO.

Если персонаж уже отключён, метод ничего не делает.

Pascal

procedure Disconnect;

Python

def Disconnect() -> None: ...

Pascal Example

begin
  if Connected then
    Disconnect;
end.

Python Example

if Connected():
    Disconnect()

See Also

Connected, Connect