11-14-2015, 05:26 AM
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