02-21-2017, 07:19 AM
When you run the following profile
While collecting Ice Shard in South Shroud,
And even if the ice shard is less than 1000,
it will switch to the task of collecting wind shards due to the influence of collecting Fragrant Log.
Is this the specification of Bot ?
Is there a way to prevent me from collecting unspoiled nodes ?
Is there a way to prevent tasks from switching even when collecting unspoiled nodes ?
Is there anyone with the same problem as I am ?
Code:
local obj1 = {
["tasks"] = {
[1] = {
["type"] = "botany";
["radius"] = 150;
["item1"] = "Ice shard";
["item2"] = "";
["minlevel"] = 26;
["mapid"] = 153;
["pos"] = {
["x"] = xxx,xx;
["y"] = yyy.yy;
["z"] = zzz.zz;
};
["normalpriority"] = true;
["usestealth"] = false;
["gathermaps"] = false;
["unspoiled"] = false;
["skillprofile"] = "";
["condition"] = {
["ItemCount(3) < 1000"] = true;
};
["complete"] = {
["ItemCount(3) >= 1000"] = true;
};
};
[2] = {
["type"] = "botany";
["radius"] = 250;
["item1"] = "Wind Shard";
["item2"] = "";
["minlevel"] = 26;
["mapid"] = 148;
["pos"] = {
["x"] = xxx,xx;
["y"] = yyy.yy;
["z"] = zzz.zz;
};
["normalpriority"] = true;
["usestealth"] = false;
["gathermaps"] = false;
["unspoiled"] = false;
["skillprofile"] = "";
["condition"] = {
["ItemCount(4) < 1000"] = true;
};
["complete"] = {
["ItemCount(4) >= 1000"] = true;
};
};
};
}
return obj1
While collecting Ice Shard in South Shroud,
And even if the ice shard is less than 1000,
it will switch to the task of collecting wind shards due to the influence of collecting Fragrant Log.
Is this the specification of Bot ?
Is there a way to prevent me from collecting unspoiled nodes ?
Is there a way to prevent tasks from switching even when collecting unspoiled nodes ?
Is there anyone with the same problem as I am ?