Posts: 14
Threads: 4
Joined: Dec 2013
I don't have a copy of the Brayflox HM profile, otherwise I'd have a reference there.
What's the best way to have the bots cross the in-duty zone lines?
Several of the HW dungeons have these.
Is it just to teleport the bots to the zone line? Which taskFunction is used?
Posts: 6,540
Threads: 67
Joined: Nov 2013
you just do it like any other encounter its just on the ground, just look at any other profile, they all hit the ground before the boss. Just do a dokill=false. then it lands in that spot which triggers boss then they go on to the next encounter at the end of teh wait/fail timers.
Posts: 243
Threads: 17
Joined: Jan 2014
06-30-2015, 02:53 PM
(This post was last modified: 06-30-2015, 02:54 PM by kitanoi.)
[x] = {
["doKill"] = false;
["radius"] = 1;
["bossIDs"] = "0;";
["taskFunction"] = "ffxiv_duty_kill_task.Create";
["waitTime"] = 3000;
["failTime"] = 2000;
["startPos"] = {
["General"] = {
["y"] = x;
["x"] = x;
["h"] =x;
["z"] = x;
};
};
};
x's replace as you need.
change wait and fails as you need for load times.
Posts: 6,540
Threads: 67
Joined: Nov 2013
Posts: 14
Threads: 4
Joined: Dec 2013
(06-30-2015, 03:18 PM)Cichard Wrote: https://www.dropbox.com/s/3pljudh4142o5j....info?dl=0
I appreciate that. Simple enough.
If you don't mind answering a follow up question, where do you find the interactid for the ffxiv_task_interact task?
Is it the unique id of the entity?
Posts: 6,540
Threads: 67
Joined: Nov 2013