MMOMinion

Full Version: Quest 1190 "you have selected regicide"
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I'm trying to make a quest profile for the quest that unlocks thornmarch, but when I start to escort the moogle and we get ambushed, I can't get the bot to attack the mob until after the moogle i'm escorting is dead. I'm pretty sure its because when the mobs spawn they only aggro the moogle and not myself. here's a sample of the step number I'm having trouble with:

[6] = {
["mapid"] = 152;
["type"] = "kill";
["killcount"] = 1;
["id"] = 699;
["itemreward"] = false;
["meshname"] = "East Shroud";
["pos"] = {
["y"] = 7.1138296127319;
["x"] = -487.44198608398;
["z"] = 79.889663696289;

is there another line I can add to get the bot to kill mob(s) as soon as they spawn?
Code:
                [6] = {
                    ["mapid"] = 152;
                    ["type"] = "killaggro";
                    ["meshname"] = "East Shroud";
                    ["ids"] = "699";
                    ["failTime"] = 3000;
                    ["itemreward"] = false;
                    ["delay"] = 2000;
                    ["pos"] = {
                        ["y"] = 7.8977727890015;
                        ["x"] = -498.13800048828;
                        ["z"] = 75.052589416504;
                    };
                };
that worked great. Thanks Latty
no problem