|
Post by Kelpinn on Mar 9, 2005 19:34:15 GMT -5
Can anyone tell me if FFXI_Helper would still work with AutoIt with all the changes that have happened with FFXI and FFACT I'm contemplating different avenues for my PL Bot, and was wondering about using the GUI that comes with the new AutoIt Any help would be appreciated
|
|
|
Post by TinyTerror on Mar 9, 2005 22:11:08 GMT -5
Im pretty sure duke's revision of FFXI Helper still works. There are some slowdown problems that happen after a while, you you may want to strip it down to the essentials and get rid of everything else.
|
|
|
Post by Kelpinn on Mar 11, 2005 18:42:27 GMT -5
I tired using the FFXI_Helper and I think there might be a problem with
FFACT_GetTargetHPPercent();
Can someone verify this on their side, to see if its just me ? Mine doesn't seem to be getting the correct value, as my PL Bot goes heal crazy when checking the HPP of the target.
Thanks !!
BTW, here's my healing code where i'm using that HPP check.
Func CheckHeal();
;FFACTTargetUpdate(); <--- AutoTerror Commands ;$TargetHPP = FFACTTargetGetHPPercent();
FFACT_Update(); $TargetHPP = FFACT_GetTargetHPPercent();
If ($TargetHPP < 40) Then Send("!3"); <----------------------------- Insert CURE III Macro Here Sleep(2000); EndIf
If ($TargetHPP < 70) Then Send("!2"); <------------------------------ Insert CURE II Macro Here Sleep(2000); EndIf
If ($TargetHPP < 90) Then Send("!1"); <------------------------------ Insert CURE Macro Here Sleep(2000); EndIf
EndFunc
|
|
|
Post by Kelpinn on Mar 14, 2005 6:51:20 GMT -5
Just for everyone's information, If you're using FFXI_Helper and need to use the TargetHPP you have the change the following because its the wrong line number now... ;//Returns an float containing the target's current HP percent Func FFACT_GetTargetHPPercent() Return Number($Results[25][0]); EndFunc the $Results[25][0] has to be changed to 27 Like so... ;//Returns an float containing the target's current HP percent Func FFACT_GetTargetHPPercent() Return Number($Results[27][0]); EndFunc Otherwise it will always return the wrong result... That's why my PL Bot was going HEAL crazy....
|
|
|
Post by TinyTerror on Mar 14, 2005 7:24:53 GMT -5
Heal crazy is good
|
|