MMOMinion

Full Version: Help making crafting profiles and gathering profiles.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
It seems that since I am new and the forum is a bit older most of the guides and tutorials dont work or the images are gone from the free hosts used. 
I am trying to make a profile for gathering that will collect 3-4 different items from different nodes in different zones. Here is my code sofar

Code:
local obj1 = {
    ["setup"] = {
        ["gearsetmining"] = 2;
        ["gearsetbotany"] = 3;
    };
    ["tasks"] = {
        [1] = {
            ["mapid"] = 614;
            ["radius"] = 25;
            ["pos"] = {
                ["x"] = 542.08068847656;
                ["y"] = 71.038124084473;
                ["z"] = 32.036777496338;
            };
            ["type"] = "mining";
            ["item1"] = "Crescent Spring Water";
            ["condition"] = {
                ["ItemCount(19872) <= 3000"] = true;
            };
            ["skillprofile"] = "G_Multi_Gathering";
            ["gathermaps"] = false;
            ["dangerousarea"] = false;
            ["usestealth"] = false;
            ["unspoiled"] = false;
            ["timeout"] = 180;
        };
        [2] = {
            ["mapid"] = 614;
            ["radius"] = 30;
            ["pos"] = {
                ["x"] = 508.06390380859;
                ["y"] = 42.211799621582;
                ["z"] = -64.677284240723;
            };
            ["type"] = "mining";
            ["item1"] = "Crescent Spring Water";
            ["condition"] = {
                ["ItemCount(19872) <= 3000"] = true;
            };
            ["skillprofile"] = "G_Multi_Gathering";
            ["gathermaps"] = false;
            ["dangerousarea"] = false;
            ["usestealth"] = false;
            ["unspoiled"] = false;
            ["timeout"] = 180;
        };
        [3] = {
            ["mapid"] = 154;
            ["radius"] = 20;
            ["pos"] = {
                ["x"] = 424.72424316406;
                ["y"] = 61.334629058838;
                ["z"] = -5.2198133468628;
            };
            ["type"] = "mining";
            ["item1"] = "Crescent Spring Water";
            ["condition"] = {
                ["ItemCount(19872) <= 3000"] = true;
            };
            ["skillprofile"] = "G_Multi_Gathering";
            ["gathermaps"] = false;
            ["dangerousarea"] = false;
            ["usestealth"] = false;
            ["unspoiled"] = false;
            ["timeout"] = 180;
        };
    };
}
return obj1
Not just add the other 2 or 3 items
Also add a ["group"] = "name";

So that it will prioritise those grouped tasks together.
There is also premade addons to do it all in the store if you want