Thread Rating:
  • 9 Vote(s) - 3.22 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Can someone explain to me what im doing wrong?
#1
SO I quit for 3 weeks, came back. Now I am using the same scripts I did 3 weeks ago and for some odd reason, it mounts up and runs into walls or runs the opposite way. it doesnt gather at all.

--[[
::: General Task Parameters
"condition" - Table parameter listing various extra conditions required to perform this task, can be used to evaluate lua code.
"complete" - Table parameter listing various extra conditions that will cause this task to complete, can be used to evaluate lua code.
"lowpriority","normalpriority","highpriority" - affects task evaluations (advanced).
"weatherlast","weathernow","weathernext" - used to evaluate weather conditions for the "mapid" tag listed for the task.
"eorzeaminhour","eorzeamaxhour" - used to evaluate the eorzea time ranges a task is valid.
"lastshiftmin" - used to evaluate a minimun amount of time (in seconds) since last weather shift
"lastshiftmax" - used to evaluate a maximum amount of time (in seconds) since last weather shift
"nextshiftmin" - used to evaluate a minimun amount of time (in seconds) until next weather shift
"nextshiftmax" - used to evaluate a maximum amount of time (in seconds) until next weather shift
"maxtime" - used to evaluate the maximum amount of time spent at low priority nodes (works like marker timers).

::: Gathering-Specific Task Parameters
* gathermaps - variant - default: false, indicates which, if any special map items should be gathered
* gathergardening - variant - default: false, indicates which, if any gardening items should be gathered
* gatherrares - variant - default: false, indicates which, if any rare items should be gathered, rare items are ones which do not always appear, but can be gathered multiple times on the nodes in which they appear
* gatherspecialrares - variant - default: false, indicates which, if any special rare items should be gathered, special rares are items which disappear after a single collection
* "gatherchocofood" - variant - default: false, indicates which, if any chocobo items should be gathered

Variants above support the following example inputs:
["gathermaps"] = true; (gather any map)
["gathermaps"] = false; (gather no map)
["gathermaps"] = "12243"; (gather only dragonskin map) (singular contentid of an item)
["gathermaps"] = "12243,6692"; (gather dragonskin or peisteskin maps) (multiple comma-separated contentid's of items)

* "item1" - string - default: "" - singular item name with 1st priority on the given set of nodes - ex: ["item1"] = "Cotton Boll";
* "item2" - string - default: "" - singular item name with 2nd priority on the given set of nodes - ex: ["item2"] = "Wind Crystal";
* "usestealth" - boolean - default: false - should stealth be used for this task - ex: ["usestealth"] = true;
* "dangerousarea" - boolean - default: false - should extra stealth precaution be taken in this area - ex: ["dangerousarea"] = true;
* "resetdaily" - boolean - default: false - should task only be valid for one node per day, much like unspoiled (note that unspoiled contentid's 5-8 are already handled in this manner) - ["resetdaily"] = true;
* "skillprofile" - string - default: "" - specifies the name of the skill profile to be used - ex: ["skillprofile"] = "hqgather";
* "mingp" - integer - default: 0 - specifies a minimum GP before node is undertaken - ex: ["mingp"] = 550;
* "usecordials" - boolean - default: follows Use Cordials GUI option - specifies to use cordials to help regain GP faster - ex: ["usecordials"] = true;
* "type" - string - default: "" - specifies the type of task, if job needs to be switched. if job needs to be switched, please make sure the Miner Gearset and Botanist Gearset is setup correctly - valid options are "mining" or "mining".

::: Further
using the weather or eorzea time tags automatically configure a task as high priority.
high priority tasks with lower indexes will take priority if multiple high priority tasks are viable.
task indexes do not necessarily need to be perfectly in order.
--]]
local obj1 = {
["setup"] = {
["gearsetmining"] = 1;
["gearsetbotany"] = 2;
};
["tasks"] = {
[301] = {
["type"] = "botany";
["timeout"] = 2000;
["minlevel"] = 51;
["maxlevel"] = 60;
["radius"] = 200;
["whitelist"] = "4";
["item1"] = "Timeworn Dragonskin Map";
["item2"] = "Rainbow Cotton Boll";
["skillprofile"] = "hqgather";
["mapid"] = 397;
["pos"] = {
["x"] = -171.10908508301;
["y"] = 85.430541992188;
["z"] = -218.21141052246;
};
["usecollect"] = false;
};
[302] = {
["type"] = "botany";
["timeout"] = 2000;
["minlevel"] = 51;
["maxlevel"] = 60;
["radius"] = 200;
["whitelist"] = "4";
["item1"] = "Timeworn Dragonskin Map";
["item2"] = "Rainbow Cotton Boll";
["skillprofile"] = "hqgather";
["mapid"] = 397;
["pos"] = {
["x"] = -171.10908508301;
["y"] = 85.430541992188;
["z"] = -218.21141052246;
};
["usecollect"] = false;
};
[303] = {
["type"] = "botany";
["timeout"] = 2000;
["minlevel"] = 51;
["maxlevel"] = 60;
["radius"] = 200;
["whitelist"] = "4";
["item1"] = "Timeworn Dragonskin Map";
["item2"] = "Rainbow Cotton Boll";
["skillprofile"] = "hqgather";
["mapid"] = 397;
["pos"] = {
["x"] = -155.10908508301;
["y"] = 91.430541992188;
["z"] = -345.21141052246;
};
["usecollect"] = false;
};
[304] = {
["type"] = "botany";
["timeout"] = 2000;
["minlevel"] = 51;
["maxlevel"] = 60;
["radius"] = 200;
["whitelist"] = "4";
["item1"] = "Timeworn Dragonskin Map";
["item2"] = "Rainbow Cotton Boll";
["skillprofile"] = "hqgather";
["mapid"] = 397;
["pos"] = {
["x"] = -188.10908508301;
["y"] = 92.430541992188;
["z"] = -400.21141052246;
};
["usecollect"] = false;
};
[305] = {
["type"] = "botany";
["timeout"] = 2000;
["minlevel"] = 51;
["maxlevel"] = 60;
["radius"] = 200;
["whitelist"] = "4";
["item1"] = "Timeworn Dragonskin Map";
["item2"] = "Rainbow Cotton Boll";
["skillprofile"] = "hqgather";
["mapid"] = 397;
["pos"] = {
["x"] = -330.10908508301;
["y"] = 79.430541992188;
["z"] = -304.21141052246;
};
["usecollect"] = false;
};
[306] = {
["type"] = "botany";
["timeout"] = 2000;
["minlevel"] = 51;
["maxlevel"] = 60;
["radius"] = 200;
["whitelist"] = "4";
["item1"] = "Timeworn Dragonskin Map";
["item2"] = "Rainbow Cotton Boll";
["skillprofile"] = "hqgather";
["mapid"] = 397;
["pos"] = {
["x"] = -330.10908508301;
["y"] = 79.430541992188;
["z"] = -304.21141052246;
};
["usecollect"] = false;
};

};
}
return obj1





So whats wrong?
Reply
#2
turn legacy control off, it sounds like you using those instead of standard

(character config > general > movement)
Reply
#3
Where is character config, I dont see it @ all.
Reply
#4
It is in the system tab, but you can also press the esc key.
Reply
#5
Its standard.
Reply
#6
moving to gathering profile section of hte forums, this is for skill profiles. but even then this sounds like you have a navmesh issue. do you ahve a controller plugged in?
Reply
 


Forum Jump:


Users browsing this thread: 1 Guest(s)

We help you win the game.

FFXIV Bot and More.

 

Products