MMOMinion

Full Version: Please let me know the code that works in the housing area.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I'm sorry for my poor English.

For example, when I want to fish in The Mist, I go to Limsa Lower aetheryte first and then to The Mist.

Because I have no home in The Mist. Of course, there are no housing in other areas.

I have a mesh data for a housing areas. (The Mist=399, Lavender Beds=340, The Goblet=341)

I have written the code, but my character does not move from the big city to the housing areas.

If I add more phrases to the code, will my character be able to go to the housing area to fish?

I'm using FFXIVKR bot.

Please help me :(

local obj1 = {
["tasks"] = {
[1] = {  --(  Twitchbeard)
["type"] = "fishing";
["minlevel"] = 1;
["maxlevel"] = 60;
["mapid"] = 339;
["pos"] = {
-- -774.63 | -0.22 | -699.55 | -2.11
["x"] = -774.63;
["y"] = -0.22;
["z"] = -699.55;
["h"] = -2.11;
};
["weathernow"] = "Clear Skies,Fair Skies";
["eorzeaminhour"] = 04;
["eorzeamaxhour"] = 06;
["moochables"] = "Fullmoon Sardine";
            ["whitelist"] = "Twitchbeard";
            ["whitelisthq"] = "Twitchbeard";
["usecollect"] = false;
["usemooch"] = true;
["highpriority"] = true;
["baitname"] = "Spoon Worm";
};

[2] = {  --(  Sweetnewt)
["type"] = "fishing";
["minlevel"] = 1;
["maxlevel"] = 60;
["mapid"] = 340;
["pos"] = {
-- 16.99 | 2.61 | 215.92 | 0.54
["x"] = 16.99;
["y"] = 2.61;
["z"] = 215.92;
["h"] = 0.54;
};
["weathernow"] = "Fog";
["eorzeaminhour"] = 23;
["eorzeamaxhour"] = 05;
["moochables"] = "Ala Mhigan Fighting Fish";
            ["whitelist"] = "Sweetnewt";
            ["whitelisthq"] = "Sweetnewt";
["usecollect"] = false;
["usemooch"] = true;
["highpriority"] = true;
["baitname"] = "Midge Basket";
};

[3] = {  --(  Spearnose)
["type"] = "fishing";
["minlevel"] = 1;
["maxlevel"] = 60;
["mapid"] = 341;
["pos"] = {
-- 19.01 | -12.00 | -55.54 | 1.57
["x"] = 19.01;
["y"] = -12.00;
["z"] = -55.54;
["h"] = 1.57;
};
["weathernow"] = "Fog,Clouds";
["eorzeaminhour"] = 20;
["eorzeamaxhour"] = 24;
            ["whitelist"] = "Spearnose";
            ["whitelisthq"] = "Spearnose";
["usecollect"] = false;
["usemooch"] = false;
["highpriority"] = true;
["baitname"] = "Caddisfly Larva";
};
};
}
return obj1
housing area are currently not supported, that is why it will not travel to them. you have to travel there manually.
(06-05-2017, 07:29 AM)brocklesnar Wrote: [ -> ]housing area are currently not supported, that is why it will not travel to them. you have to travel there manually.

Thanks for letting me know!