
Some Progress
So I found this code in bot_ed was commented out.
===============================================
if (cvar("pr_checkextension"))
{
if (checkextension("FRIK_FILE"))
SaveWays();
self.b_menu = 17;
self.b_menu_time = time;
}
=====================================
Uncommenting it seems to have let me save the ways using Frikfile at least.
However the bots still dont navigate on the map like they have the routes configured correctly, they seem to navigate, then stop, and some ways that I thought would be made never did get made.
Was also wondering if this code is maybe rounding the values down , in some cases isolating the waypoints so they cant be linked?
============================================
// 2001-09-10 FrikBot support by FrikaC/Maddes start
t.origin_x = rint(t.origin_x);
t.origin_y = rint(t.origin_y);
t.origin_z = rint(t.origin_z);
// 2001-09-10 FrikBot support by FrikaC/Maddes end
=============================================