Disconnect
Disconnects the current character from the UO server.
If the character is already disconnected, the method does nothing.
Отключает текущего персонажа от сервера UO.
Если персонаж уже отключён, метод ничего не делает.
procedure Disconnect;
def Disconnect() -> None: ...
begin
if Connected then
Disconnect;
end.
if Connected():
Disconnect()