08-20-2014, 03:02 AM
hiya, ace. I've been wondering what is the differences between encounterindex = 0 and 1? thx
Tutorial-FFXIVMinion v1.5 "Duty Mode"( Tasks & Directives - Profile Building Guide)
|
08-20-2014, 03:02 AM
hiya, ace. I've been wondering what is the differences between encounterindex = 0 and 1? thx
08-26-2014, 12:17 PM
(08-20-2014, 03:02 AM)BurBur Wrote: hiya, ace. I've been wondering what is the differences between encounterindex = 0 and 1? thx I think it's just what step to start at, for example LCoA: Code: ["MapID"] = 363; If you do ["EncounterIndex"] = 2; it will start at: Code: [2] = {
08-27-2014, 01:10 PM
Yes, pretty much, it should always be 0 unless you're trying to debug a specific encounter or something.
grumble.... ill spend hours trying to fix something... finally ask and then fix it myself lmao..
08-31-2014, 09:39 PM
Such is life. :)
09-01-2014, 04:11 PM
Is it possible to prioritize on highest mob HP instead of mobID?
This will help in AoE farms for BLMs as their spells are often interrupted when the mob dies halfway though the spell casting timer.
09-01-2014, 04:22 PM
(09-01-2014, 04:11 PM)XenoJin Wrote: Is it possible to prioritize on highest mob HP instead of mobID? The bot does that automatically already. The thing is, once the bot pick a target, it doesnt switch till it dies. So if your bot pick a target and your flare just happen to hit the rotation when its less than 1/2 hp, then it's likely it will get cancelled. You can try to tweak skill profile.
09-06-2014, 07:53 AM
(This post was last modified: 09-06-2014, 07:54 AM by behemoth8u.)
Would it be possible to add something like a C++ if/else or case statement to a duty profile? For example:
In Sastasha, to determine which coral fragment to interact with, check which contentid is present at the position for the bloody memo and then press the coral fragment corresponding to that ID. The bloody memo ID is different depending on which color is to be pressed: 2001549 - Green 2000212 - Blue 2001548 - Red Then the coral formation IDs: 2000215 - Green 2000213 - Blue 2000214 - Red So you could write something like: (go to the position for memo) if(interact with green id)then(go to the position for the coral fragments and interact with the green id) else if(interact with blue id)then(go to the position for the coral fragments and interact with the blue id) else(interact with the blue id)then(go to the position for the coral fragments and interact with the blue id) (go to fight position) I know this would probably take some work, but it could be really useful for automating full dungeon runs, especially for those of us trying to complete the story quests on multiple characters over and over. If this is in the wrong place, please feel free to move it! Sorry if it is.
10-18-2014, 12:50 AM
How would one write a loop?
For example.... encounter 1 encounter 2 encounter 3 check boss HP if >=1% jump to encounter 1 else; }; the "check boss HP" and "if >=1%" is all i need. All my encounters have already been scripted. |
|