02-28-2015, 02:09 AM
(02-27-2015, 09:58 PM)sebbs Wrote: missing a lot of ; at the end of a lot of lines.
["markerMode"] = "Single Marker"
["markerType"] = "Botany Marker"
spelling errors.....
["markerType"] = "miningMarker";
not
["markerType"] = "Miner Marker";
wicked thx cant believe i messed that up so much
well i got it working a bit more it goes to all the right location and starts the bot but the it does not change the marker :(
so i set the markers to what i need them to be but would be good if it did change the marker to the right one
here is my updated one
-- Persistent Data
local multiRefObjects = {
} -- multiRefObjects
local obj1 = {
["tasks"] = {
[0] = {
["mode"] = "Gather";
["markerMode"] = "Single Marker";
["markerType"] = "botanyMarker";
["markerName"] = "Botany 20";
["useStealth"] = "1";
["maxLevel"] = 26;
["gearset"] = 7;
["location"] = {
["map"] = 141;
["mesh"] = "Central Thanalan";
};
};
[1] = {
["mode"] = "Gather";
["markerMode"] = "Single Marker";
["markerType"] = "miningMarker";
["markerName"] = "Mining 10";
["useStealth"] = "1";
["maxLevel"] = 16;
["gearset"] = 8;
["location"] = {
["map"] = 140;
["mesh"] = "Western Thanalan";
};
};
[2] = {
["mode"] = "Grind";
["fateId"] = "";
["gearset"] = 1;
["maxLevel"] = 51;
["location"] = {
["map"] = 141;
["mesh"] = "Central Thanalan";
};
};
};
}
return obj1
this is the line i suspect is wrong
["markerName"] = "Mining 10";
thx for all the help buddy