MMOMinion

Full Version: Help with new fishing system
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Don't quite understand how the new system works, I've read the example but I'm kinda lost.

Could someone explain how I can make a fishing profile that automatically travels to Tailfeather when the required weather conditions are met to catch Pipira Pira? Any maybe travel back to a resting spot after they are over?

Pips are caught in Tailfeather with a Goblin Jig when there are Dust Storms, Clouds or Foggy weather, I'm just trying to put all the traveling and weather recognition stuff in there.

- Thanks!
just open up someone elses profile to see the format, open the examples file to see the list of commands. Just change the xyz and map id to the zone you want to be in.
use the one from here http://www.mmominion.com/Thread-Thunderb...ipira-Pira and remove every task but the Pipira Pira task and task 1000 (idle in Limsa).
(11-04-2015, 12:17 AM)TauTau Wrote: [ -> ]use the one from here http://www.mmominion.com/Thread-Thunderb...ipira-Pira and remove every task but the Pipira Pira task and task 1000 (idle in Limsa).

Thanks I didn't see that profile had most of what I need in there, also helped to learn how it works.

--------------------------------

[EDIT]: Ok I got everything working with one minor quirk, I went ahead and added many different tasks under one profile but the only problem I'm having is things that need collector's glove to be active to gather collectibles gets automatically disabled.

I can manually enable it before I start the profile and sent the bot to do it's thing but the first thing the profile does is disable the buff. I didn't see anything about an option to enable or disable it in the annotations.

Any ideas?
(11-04-2015, 03:17 PM)LatinP Wrote: [ -> ]
(11-04-2015, 12:17 AM)TauTau Wrote: [ -> ]use the one from here http://www.mmominion.com/Thread-Thunderb...ipira-Pira and remove every task but the Pipira Pira task and task 1000 (idle in Limsa).

Thanks I didn't see that profile had most of what I need in there, also helped to learn how it works.

--------------------------------

[EDIT]: Ok I got everything working with one minor quirk, I went ahead and added many different tasks under one profile but the only problem I'm having is things that need collector's glove to be active to gather collectibles gets automatically disabled.

I can manually enable it before I start the profile and sent the bot to do it's thing but the first thing the profile does is disable the buff. I didn't see anything about an option to enable or disable it in the annotations.

Any ideas?

["usecollect"] = true/false;
(11-04-2015, 03:17 PM)LatinP Wrote: [ -> ]I didn't see anything about an option to enable or disable it in the annotations.

that's because my file is based on an old example.lua ;) Always helps to look in the current one, new options are in there
Is there anyway to add multiple fish markers and shift from one to another every so often so you don't get fishing fatigue?

I tried something like this setting max time to 600 (10 mins) and just testing it but anything with a time or weather variable automatically gets flagged as high priority.

According to the annotations high priority tasks with lower indexes will take priority if multiple high priority tasks are viable but that just puts the tasks in the loop and never switches them or at least they didn't for me.

Here is my lua file:

Code:
local obj1 = {
        ["setup"] = {
        ["gearsetfishing"]= 1;
        ["gearsetmining"] = 3;
        ["gearsetbotany"] = 4;
    };

    ["tasks"] = {

        [1] = {
            ["type"] = "fishing";
            ["minlevel"] = 60;
            ["maxlevel"] = 60;
            ["mapid"] = 398;
            ["pos"] = {
                ["x"] = 418.09176635742;
                ["y"] = -48.713756561279;
                ["z"] = -216.56489562988;
                ["h"] = -3.1061675548553;
            };
            ["whitelist"] = "Pipira Pira";
            ["whitelisthq"] = "Pipira Pira";
            ["weathernow"] = "Fog,Dust Storms,Clouds";
            ["usestealth"] = false;
            ["usemooch"] = false;
            ["usepatience"] = true;
            ["usepatience2"] = false;
            ["usechum"] = false;
            ["baitname"] = "Goblin Jig";        
            ["lowpriority"] = true;    
            ["maxtime"] = 600;
        };

        [2] = {
            ["type"] = "fishing";
            ["minlevel"] = 60;
            ["maxlevel"] = 60;
            ["mapid"] = 398;
            ["pos"] = {
                ["x"] = 433.51525878906;
                ["y"] = -47.886352539063;
                ["z"] = -276.29364013672;
                ["h"] = -3.1061675548553;
            };
            ["whitelist"] = "Pipira Pira";
            ["whitelisthq"] = "Pipira Pira";
            ["weathernow"] = "Fog,Dust Storms,Clouds";
            ["usestealth"] = false;
            ["usemooch"] = false;
            ["usepatience"] = true;
            ["usepatience2"] = false;
            ["usechum"] = false;
            ["baitname"] = "Goblin Jig";        
            ["lowpriority"] = true;    
            ["maxtime"] = 600;
        };

        [3] = {
            ["type"] = "fishing";
            ["minlevel"] = 60;
            ["maxlevel"] = 60;
            ["mapid"] = 398;
            ["pos"] = {
                ["x"] = 403.1481628418;
                ["y"] = 52.910564422607;
                ["z"] = -757.04028320313;
                ["h"] = -1.3024959564209;
            };
            ["whitelist"] = "Thunderbolt Eel";
            ["whitelisthq"] = "Thunderbolt Eel";
            ["eorzeaminhour"] = 22;
            ["eorzeamaxhour"] = 4;
            ["resetdaily"] = true;
            ["usestealth"] = true;
            ["dangerousarea"] = true;
            ["usecollect"] = true;
            ["usemooch"] = true;
            ["usepatience"] = true;
            ["usepatience2"] = false;
            ["usechum"] = false;
            ["baitname"] = "Stonefly Nymph";    
            ["lowpriority"] = true;    
            ["maxtime"] = 600;
        };

        [4] = {
            ["type"] = "fishing";
            ["minlevel"] = 60;
            ["maxlevel"] = 60;
            ["mapid"] = 398;
            ["pos"] = {
                ["x"] = 350.79446411133;
                ["y"] = 52.91040802002;
                ["z"] = -831.84112548828;
                ["h"] = -1.3024959564209;
            };
            ["whitelist"] = "Thunderbolt Eel";
            ["whitelisthq"] = "Thunderbolt Eel";
            ["eorzeaminhour"] = 22;
            ["eorzeamaxhour"] = 4;
            ["resetdaily"] = true;
            ["usestealth"] = true;
            ["dangerousarea"] = true;
            ["usecollect"] = true;
            ["usemooch"] = true;
            ["usepatience"] = true;
            ["usepatience2"] = false;
            ["usechum"] = false;
            ["baitname"] = "Stonefly Nymph";    
            ["lowpriority"] = true;    
            ["maxtime"] = 600;
        };

        [1000] = {
            ["type"] = "fishing";
            ["radius"] = 1;
            ["minlevel"] = 1;
            ["mapid"] = 129;
            ["pos"] =  {
                ["x"] = -266.66412353516;
                ["y"] = 16;
                ["z"] = 42.529888153076;
            };    
        };
            
    };
}
return obj1

Is there any other way I can use to simulate marker switching? I'm afraid whenever I just run the file it will fish the same spot and eventually get the fatigue message and sit there trying to cast over and over again.

I also tried to manually flag the marker as low priority in the file but that doesn't seem to help either.
Remove the max time have 2 identical tasks apart from the position.

Once it senses amiss the bot moves to the alt position.

Eventually the entire map will be blocked so i swap positions map to map.

Check my 1 to 50 file in the fishing forum.
(11-05-2015, 03:20 AM)sebbs Wrote: [ -> ]Remove the max time have 2 identical tasks apart from the position.

Once it senses amiss the bot moves to the alt position.

Eventually the entire map will be blocked so i swap positions map to map.

Check my 1 to 50 file in the fishing forum.

Thanks trying that now, so I just remove the timer and set the task number for both makers to 1 for example so they're completely identical (apart from position info)?
Pages: 1 2