10-11-2013, 03:11 AM
Is there a way to see if something is able to be cast before casting it? it just seems to spam "cannot execute at this time", atleast for skill 295... I tried, ActionList:CanCast(295) for example.
Suggestion, add sprint option to the function ffxiv_task_movetopos:Init():
Also, how does distance work? Something like this doesn't seem to be working when I am trying to mount if a gather node is a certain distance away:
This also does not work as it does not wait for the mount to finish casting..
Suggestion, add sprint option to the function ffxiv_task_movetopos:Init():
Code:
ca = ActionList:Get(3)
if (ca.isready and not ca.iscasting) then
ca:Cast(3)
end
Also, how does distance work? Something like this doesn't seem to be working when I am trying to mount if a gather node is a certain distance away:
Code:
if gatherable.distance > 10 then
ca = ActionList:Get(4)
if (ca.isready and not ca.iscasting) then
ActionList:Cast(4,0)
end
end