An example of programmatic interaction with other accounts in a bot from the script of the active window.
uses SysUtils, Classes;
var
  A: TAccount;
  E: TGameControl;
begin
  A:= Accounts.GetAccount(0);
  if (not Assigned(A)) then Print('Account is not defined');
  E:= A.Engine; // or A.Control   
  if (not Assigned(E)) then Print('Account Engine is not defined');
  E.MoveTo(0,0,0);
end.