Allright... nailed down the spinning issue. I haven't used the navigation portion of the bot in a while so didn't realize it was a widespread problem until the second person posted.
Apparently, a recent patch greatly increased the sensitivity of turning with the A and D keys, so when the navigation portion was trying to face a heading, it was turning too far.
Go into the vgwaypointnavigation.vbs script near the center, and find the following lines:
Code: Register to unlock hidden link
'sets the time in ms to turn based on how far off you are from facing the correct way
turntime = abs(hdgdiff) * 9
if HdgDiff = OldHdgDiff then
turntime = turntime * 2
end if
and replace with these (or just change the numbers):
Code: Register to unlock hidden link
'sets the time in ms to turn based on how far off you are from facing the correct way
turntime = abs(hdgdiff) * 4
if HdgDiff = OldHdgDiff then
turntime = turntime * 1.5
end if
syllenus wrote:i was doin in tawar galan so its not the zone, but i have another issue as artificer sometimes when i get a cleaner recipe the util1 stage doesnt press any buttons for actions, it hits CS7 to pull up that stage over and over, never hitting another button, any ideas?
I'll need a debug of this.