MMOMinion

Full Version: Making my first profile
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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
["condition"] = {
["ItemCount(2611) < 0"] = true;
};
I made the change and now the console says I have no bait choices selected. It it saying baitChoice: [].
sorry didnt realise the item was bait .. yes your original was correct.

any other errors?
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.