![]() |
Gathering Profile - Printable Version +- MMOMinion (https://www.mmominion.com) +-- Forum: FFXIVMinion (https://www.mmominion.com/forumdisplay.php?fid=87) +--- Forum: Support - English, Deutsch, 中文 (https://www.mmominion.com/forumdisplay.php?fid=92) +---- Forum: English Support & Questions (https://www.mmominion.com/forumdisplay.php?fid=93) +---- Thread: Gathering Profile (/showthread.php?tid=14911) Pages:
1
2
|
Gathering Profile - Bishop56 - 12-08-2015 Hello, I'm trying to create a gathering profile, gathering from a few different map locations. The issue is that once it complete a task it won't go onto the next task. Although console says its Removing task [x] from valid tasks, and its Added task [x+1] to the low priority queue. If i stop/start the bot it realizes its went over the # i set it to gather, and teleports to the next aetheryte. Adding duplicates of the task doesn't seem to have helped. Code: local obj1 = { Hope someone can help! Thanks. RE: Gathering Profile - 265ada - 12-09-2015 i know jack diddly about making my profiles I feel super retarded but I am myself seeking a shard mining profile where it would say mine for 1-2 hours and switch to mining another shard type ex: FIRE>WATER>WIND>EARTH Hope you get it working bub. FYI yes I have watched the videos 2-4 times each I still don't get it lol RE: Gathering Profile - Cichard - 12-09-2015 there are profiles already made and being shared by people that farm shards/crystals. RE: Gathering Profile - Ace - 12-09-2015 Does it change the task index to the new task in the status dropdown? The "Removing [x] from valid tasks", doesn't necessarily mean that that task is completed, just that it cannot be undertaken again. You might try using ItemCount() for the complete to see if this changes the result at all, you seem to be wanting a specific number of shards anyway so using inventory gains function doesn't quite seem to be on-base with what you're trying to accomplish. Just for clarification, the inventory gains function means that it will gather 610 more of the crystal, so if you started at 609, the task is not complete until you have 1219 crystals. RE: Gathering Profile - sebbs - 12-09-2015 ["complete"] = { ["ItemCount(13) < 610"] = false; }; RE: Gathering Profile - Bishop56 - 12-09-2015 (12-09-2015, 05:33 AM)Ace Wrote: You might try using ItemCount() for the complete to see if this changes the result at all, you seem to be wanting a specific number of shards anyway so using inventory gains function doesn't quite seem to be on-base with what you're trying to accomplish. It worked! Changing Complete to ItemCount() made it switch tasks! Thanks! ![]() RE: Gathering Profile - Bishop56 - 12-09-2015 I also wanted to make profiles based on time. So he'd gather from one map for 30minutes, then switch to a different map for 30minutes. Is this possible? I tried implementing [timeout], but it doesn't seem to work. RE: Gathering Profile - Ace - 12-09-2015 use ["maxtime"] for that, it's in milliseconds so 30 minutes would be 30 x 60 x 1000 = 1800000 RE: Gathering Profile - Bishop56 - 12-09-2015 (12-09-2015, 10:20 PM)Ace Wrote: use ["maxtime"] for that, it's in milliseconds so 30 minutes would be 30 x 60 x 1000 = 1800000 Sweet, thanks! Worked! ![]() Are there any listings of the syntax anywhere? Right now I'm just scavenging other people's profiles. Which, probably isn't the best thing to do. RE: Gathering Profile - Ace - 12-10-2015 Look in the Example.lua :) |