Quote:
Originally Posted by Restia Ashdoll
The Build is not strange at all - maybe inform yourself how the farm works before you want to run a bot ...
|
Thanks, I gave a look on pvx wiki, but i didn't find anything related to Mesmer-DOA farming. I will try that build.
Quote:
Originally Posted by Restia Ashdoll
--> regarding the other error - if you just tell us it's an error how should be help you it could be several different e.g. missing func, missing constant, wrong buildup of the func in general, illigal statements etc.
if you want real help you might wanna get somewhat specific - regarding most errors there are already explanations given here.
|
I downloaded the code and used the recent GWA2/Headers (a combo that is working with other scripts). Script is running, but i'm experiencing problems with this particular function (that didn't change between original GWA2 and updated one):
Code:
;~ Description: Returns the recharge time remaining of an equipped skill in milliseconds.
Func GetSkillbarSkillRecharge($aSkillSlot, $aHeroNumber = 0)
Local $lTimestamp = DllStructGetData(GetSkillbar($aHeroNumber), 'Recharge' & $aSkillSlot)
If $lTimestamp == 0 Then Return 0
Return $lTimestamp - GetSkillTimer()
EndFunc ;==>GetSkillbarSkillRecharge
The error I receive is: "Incorrect number of parameters in function call."
The script is recalling the function this way:
Code:
If GetSkillbarSkillRecharge($sf) < 500 Then UseSkill($sf) ; Out("ReCast For SF !!!")
(Plus there is another problem with Hero Monk, the script is moving him while Margonites are around so he dies badly)