14 lines
559 B
Lua
14 lines
559 B
Lua
xi = xi or {}
|
|
|
|
---@enum xi.pathflag
|
|
xi.pathflag =
|
|
{
|
|
NONE = 0x00,
|
|
RUN = 0x01, -- run twice the speed
|
|
WALLHACK = 0x02, -- run through walls if path is too long
|
|
REVERSE = 0x04, -- reverse the path
|
|
SCRIPT = 0x08, -- don't overwrite this path before completion (except via another script)
|
|
SLIDE = 0x10, -- Slide to end point if close enough (so no over shoot)
|
|
PATROL = 0x20, -- Automatically restart path once it is finished and resume when roaming
|
|
COORDS = 0x40, -- Follows path until end, but will not repeat
|
|
}
|