MMOMinion
Making my first profile - 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: Making my first profile (/showthread.php?tid=14598)



Making my first profile - billdauterive - 11-14-2015

I'm trying to make my profile and I keep getting a message saying task didn't fall into an always evaluate in the console. My character mounts and just stands there. I copied and pasted from code posted here and added in the times and weather. I checked the itemcount ID and it matches with what I want to use. It's meeting the correct fishing conditions. I got the coordinates using the teleporter module.

Code:
local obj1 = {
    ["tasks"] = {
        [1] = {
            ["condition"] = {
                ["ItemCount(2611) > 0"] = true;
            };
            ["minlevel"] = 50;
            ["maxlevel"] = 60;
            ["mapid"] = 140;
            ["pos"] = {
                ["x"] = -523.48;
                ["y"] = 50.57;
                ["z"] = 693.51;
                ["h"] = -1.10;
            };
            ["eorzeaminhour"] = 11;
            ["eorzeamaxhour"] = 17;
            ["weathernow"] = "Clear Skies, Fair Skies";
            ["usemooch"] = true;
            ["usepatience"] = true;
            ["usepatience2"] = false;
            ["usechum"] = false;
            ["usestealth"] = true;
            ["baitname"] = "Floating Minnow";    
        };
    };
}
return obj1



RE: Making my first profile - sebbs - 11-14-2015

["condition"] = {
["ItemCount(2611) < 0"] = true;
};


RE: Making my first profile - billdauterive - 11-14-2015

I made the change and now the console says I have no bait choices selected. It it saying baitChoice: [].


RE: Making my first profile - sebbs - 11-14-2015

sorry didnt realise the item was bait .. yes your original was correct.

any other errors?


RE: Making my first profile - billdauterive - 11-15-2015

There aren't any other errors that I could find. I emptied out the marker list to see if that was interfering with the profile but that didn't do anything.