Post any feedback here.
Files located: http://www.isxgames.com/forums/showthread.php?p=11009#post11009
Files located: http://www.isxgames.com/forums/showthread.php?p=11009#post11009
Well by that statement it just sounds like it's not going to know how to handle mobs and know when to join in vs a node. I've not actually used this script, but I make my assumption by the description. And the way you said it wasn't working sounds exactly like it doesn't know how to wait for resources that you have to kill/loot first.Will follow any person and assist on any harvestable resource.
Which from what I see it already checks that he is not in combat with this linefunction Harvest()
{
if "(${Me.Target.Type.Equal[Resource]} || ${Me.Target.IsHarvestable}) && ${Me.Target.Distance}<5 && ${Me.ToPawn.CombatState}==0"
{
VGExecute /autoattack
wait 10
}
}
So that appears to not be the issue.${Me.ToPawn.CombatState}==0
Looks like theif "(${Me.Target.Type.Equal[Resource]} || ${Me.Target.IsHarvestable})
Part checks to see if the target is an actual node like a Node of Pyrite or Such and the(${Me.Target.Type.Equal[Resource]}
Checks to see if it is a harvest able mob.${Me.Target.IsHarvestable})
function Harvest()
{
if "(${Me.Target.Type.Equal[Resource]} || ${Me.Target.IsHarvestable}) && ${Me.Target.Distance}<5 && ${Me.ToPawn.CombatState}==0"
{
VGExecute /autoattack
wait 10 ${GV[bool,bHarvesting]}
if !${GV[bool,bHarvesting]}
{
;echo Did not start Harvesting - ${Me.Target.ID}
if ${Me.AutoAttackOn}
VGExecute /autoattack
return
}
;echo Did start harvesting, waiting till finished
do
{
waitframe
}
while ${GV[bool,bHarvesting]}
}
}
thx man.. Missed that post somehowYou need to make sure you download moveto.iss from here also from a different post
You can get it here
http://isxgames.com/forums/showthread.php?t=582
I had this problem after deleting everything once.
Download it and place it in the folder named Common under scripts
If you do not have a folder named common create one
I see, thank youWon't work until isxvg has been updated.