Name Result Description Code Params Examples
LoadBase Integer Load paths database
function LoadBase(Path: string): integer;

Path - path to database file (*.db3)

You need to register to view the code example.
GetPath Integer Generate path between two points, using point coordinates
function GetPath(X1, Y1, Z1, X2, Y2, Z2: integer): integer;

X1, Y1, Z1 - starting point coordinates 

X2, Y2, Z2 - final point coordinates

You need to register to view the code example.
GetPathByName Integer Generate path between two points using point name
function GetPathByName(X1, Y1, Z1: integer; PointName: string): integer;

X1, Y1, Z1 - starting point coordinates 

PointName - final point name

You need to register to view the code example.
Items TGpsPoint Get generated path point by index
function Items(Index: integer): TGpsPoint;

Index - point index (starting from 0)

You need to register to view the code example.
Count Integer Generated path points number
function Count: integer;
There are no arguments You need to register to view the code example.

Objects

Имя Класс Description
GPS TGps Account paths generator

Methods

Имя Результат Description
TBot.GPS TGps Account paths generator
TGps.Items TGpsPoint Get generated path point by index