MMOMinion
Problem making custom fishing profiles - 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: Fish Profiles (https://www.mmominion.com/forumdisplay.php?fid=180)
+---- Thread: Problem making custom fishing profiles (/showthread.php?tid=19101)



Problem making custom fishing profiles - Zerox - 07-07-2017

All i get is "Buffering Task evalution by [---] seconds." in console....

nothing is working..

Code:
local obj1 = {
    ["tasks"] = {
        [1] = {
            ["minlevel"] = 1;
            ["maxlevel"] = 60;
            ["mapid"] = 400;
            ["pos"] = {
                ["x"] = 723.02655029297;
                ["y"] = -50.230194091797;
                ["z"] = 398.98321533203;
            };
            ["usemooch"] = false;
            ["usepatience"] = false;
            ["usepatience2"] = false;
            ["usechum"] = false;
            ["baitname"] = "Purse Web Spider";
        };
        [2] = {
            ["minlevel"] = 1;
            ["maxlevel"] = 60;
            ["mapid"] = 137;
            ["pos"] = {
                ["x"] = 533.18536376953;
                ["y"] = 8.7863550186157;
                ["z"] = 515.85119628906;
            };
            ["usemooch"] = false;
            ["usepatience"] = false;
            ["usepatience2"] = false;
            ["usechum"] = false;
            ["baitname"] = "Purse Web Spider";    
            ["maxtime"] = 30000;
        };
    };
}
return obj1



RE: Problem making custom fishing profiles - GothicPunkGirl - 07-07-2017

Don't use maxtime, just remove that and it will fish that spot till it can't anymore and move to next node. I only use max time in my reset markers. Also make sure you are not over level 60. Since SB is out, you might be level 61.


RE: Problem making custom fishing profiles - Zerox - 07-07-2017

ah right thanks, brain fart about the level too!