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

GetARStatus

Returns the auto-reconnect status for the current character: True if enabled, False if disabled.

Возвращает статус автопереподключения для текущего персонажа: True — включено, False — выключено.

Pascal

function GetARStatus: Boolean;

Python

def GetARStatus() -> bool: ...

Pascal Example

begin
  if not GetARStatus then
    SetARStatus(True);
end.

Python Example

if not GetARStatus():
    SetARStatus(True)

See Also

SetARStatus