Rusher
Provides automated map navigation with pathfinding and portal handling.
Functions
core.rusher.rush(map_id: number)
Starts automatic navigation to the specified map. The rusher automatically finds the optimal path and handles portal traversal.
core.rusher.stop()
Stops the current rushing process immediately.
core.rusher.is_rushing() -> boolean
Returns true if currently rushing to a map.
Example
lua
-- Rush to a target map
if not core.rusher.is_rushing() then
core.rusher.rush(100000000) -- Henesys
core.log("Started rushing to Henesys")
end