04-08-2019, 02:15 PM
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
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