MMOMinion
Need help with profile? Keeps stopping? - Printable Version

+- MMOMinion (https://www.mmominion.com)
+-- Forum: FFXIVMinion (https://www.mmominion.com/forumdisplay.php?fid=87)
+--- Forum: [DOWNLOADS] Addons, Lua Modules, Navigation Meshes.. (https://www.mmominion.com/forumdisplay.php?fid=90)
+---- Forum: I Need Help with LUA coding! (https://www.mmominion.com/forumdisplay.php?fid=104)
+---- Thread: Need help with profile? Keeps stopping? (/showthread.php?tid=18595)



Need help with profile? Keeps stopping? - kgizold - 05-04-2017

Below is the script im using for farming mythrite but it seems to stop at a certain point... any ideas why?












local obj1 = {
  ["setup"] = {
    ["gearsetmining"] = 1;
    ["gearsetbotany"] = 2;
  };
  ["tasks"] = {
    [1] = {
      ["item1"] = "Mythrite Sand";
      ["type"] = "mining";
      ["timeout"] = 2000;
      ["radius"] = 75;
      ["whitelist"] = "2";
      ["skillprofile"] = "Gathering_HQ";
      ["usestealth"] = true;
      ["dangerousarea"] = true;
      ["usecordials"] = true;
      ["gathermaps"] = false;
      ["gathergardening"] = false;
      ["gatherrares"] = false;
      ["gatherspecialrares"] = false;
      ["gatherchocofood"] = false;
      ["condition"] = {
        ["ItemCount(12531) + ItemCount(1012531) < 99"] = true;
      };
      ["complete"] = {
        ["ItemCount(12531) + ItemCount(1012531) >= 99"] = true;
      };
      ["mapid"] = 397;
      ["pos"] = {
        ["x"] = -183.10908508301;
        ["y"] = 91.430541992188;
        ["z"] = -396.21141052246;
      };
    };
    [2] = {
      ["item1"] = "Mythrite Sand";
      ["type"] = "mining";
      ["timeout"] = 2000;
      ["radius"] = 75;
      ["whitelist"] = "2";
      ["skillprofile"] = "Gathering_HQ";
      ["usestealth"] = true;
      ["dangerousarea"] = true;
      ["usecordials"] = true;
      ["gathermaps"] = false;
      ["gathergardening"] = false;
      ["gatherrares"] = false;
      ["gatherspecialrares"] = false;
      ["gatherchocofood"] = false;
      ["condition"] = {
        ["ItemCount(12531) + ItemCount(1012531) < 99"] = true;
      };
      ["complete"] = {
        ["ItemCount(12531) + ItemCount(1012531) >= 99"] = true;
      };
      ["mapid"] = 397;
      ["pos"] = {
        ["x"] = -335.10908508301;
        ["y"] = 89.430541992188;
        ["z"] = -602.21141052246;
      };
    };
    [3] = {
      ["item1"] = "Mythrite Sand";
      ["type"] = "mining";
      ["timeout"] = 2000;
      ["radius"] = 75;
      ["whitelist"] = "2";
      ["skillprofile"] = "Gathering_HQ";
      ["usestealth"] = true;
      ["dangerousarea"] = true;
      ["usecordials"] = true;
      ["gathermaps"] = false;
      ["gathergardening"] = false;
      ["gatherrares"] = false;
      ["gatherspecialrares"] = false;
      ["gatherchocofood"] = false;
      ["condition"] = {
        ["ItemCount(12531) + ItemCount(1012531) < 99"] = true;
      };
      ["complete"] = {
        ["ItemCount(12531) + ItemCount(1012531) >= 99"] = true;
      };
      ["mapid"] = 397;
      ["pos"] = {
        ["x"] = -410.10908508301;
        ["y"] = 91.430541992188;
        ["z"] = -453.21141052246;
      };
    };
    [4] = {
      ["item1"] = "Mythrite Ore";
      ["item2"] = "Ice Crystal";
      ["type"] = "mining";
      ["timeout"] = 2000;
      ["nodeminlevel"] = 55;
      ["nodemaxlevel"] = 55;
      ["radius"] = 75;
      ["whitelist"] = "1";
      ["skillprofile"] = "Gathering_HQ";
      ["usestealth"] = true;
      ["dangerousarea"] = true;
      ["usecordials"] = true;
      ["gathermaps"] = false;
      ["gathergardening"] = false;
      ["gatherrares"] = false;
      ["gatherspecialrares"] = false;
      ["gatherchocofood"] = false;
      ["condition"] = {
        ["ItemCount(12534) + ItemCount(1012534) < 99"] = true;
        ["ItemCount(9) < 9950"] = true;
      };
      ["complete"] = {
        ["(ItemCount(12534) + ItemCount(1012534) >= 99) or (ItemCount(9) >= 9950)"] = true;
      };
      ["mapid"] = 397;
      ["pos"] = {
        ["x"] = 536.24932861328;
        ["y"] = 166.53863525391;
        ["z"] = -518.90216064453;
      };
    };
  };
}
return obj1


RE: Need help with profile? Keeps stopping? - tadeus - 05-07-2017

By stopping do you mean your mount hovers near the node but doesn't land and go to it? If that's what you're talking about then it is an issue with navigation or mesh or both. fxfire has stated that he has been working on this the last couple of weeks. Hopefully he'll get it worked out and update the bot. Until then there's not much we can do.