BOTS are not following close enough
Posted: Fri Jan 06, 2012 3:56 am
wonder if any one can help.My bots are running this macro but they seem to be still too far away from my man character, i want then to be like in touching distance of each other :
Is there anyway of makeing them be closer???
Code: Select all
<?xml version="1.0" encoding="utf-8"?><waypoints>
<onLoad>
while(true) do
repeat
player:update();
partyleader = GetPartyMemberAddress(1)
if partyleader ~= nil then partyleaderaddress = partyleader end
player:lootAll();
RoMScript("FollowUnit('party1');");
player:update();
until partyleader == nil
repeat
keyboardHold(settings.hotkeys.MOVE_FORWARD.key)
waitForLoadingScreen()
until partyleaderaddress ~= nil
end
</onLoad>
</waypoints>