MMOMinion

Full Version: Query/fail
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Code:
--[[
:::    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"] = "Botanist";
* "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"] = 2;
        ["gearsetbotany"] = 3;
    };
    ["tasks"] = {
        [1] = {
            ["type"] = "mining";
            ["radius"] = 150;
            ["item1"] = "Fire Crystal";
            ["item2"] = "Fire Shard";    
            ["minlevel"] = 26;
            ["mapid"] = 145;
            ["pos"] =  {
                ["x"] = 134;
                ["y"] = 8.31;     
                ["z"] = -80.08;
            };
            ["usestealth"] = false;
            ["gathermaps"] = false;
            ["skillprofile"] = "Crystals2";
            ["condition"] = {
                ["ItemCount(2) < 3000"] = true;
            };
            ["complete"] = {
                ["ItemCount(2) <= 3000"] = false;
            };    
        };
        [5] = {
            ["type"] = "mining";
            ["radius"] = 150;
            ["item1"] = "Water Crystal";
            ["item2"] = "Water Shard";    
            ["minlevel"] = 26;
            ["mapid"] = 140;
            ["pos"] =  {
                ["x"] = 98.76;
                ["y"] = 19.78;     
                ["z"] = 94.66;
            };
            ["usestealth"] = false;
            ["gathermaps"] = false;
            ["skillprofile"] = "Crystals2";
            ["condition"] = {
                ["ItemCount(7) < 3000"] = true;
            };
            ["complete"] = {
                ["ItemCount(7) <= 3000"] = false;
            };    
        };
        [3] = {
            ["type"] = "mining";
            ["radius"] = 150;
            ["item1"] = "Ice Crystal";
            ["item2"] = "Ice Shard";    
            ["minlevel"] = 26;
            ["mapid"] = 138;
            ["pos"] =  {
                ["x"] = 486.99;
                ["y"] = 11.92;     
                ["z"] = 334.92;
            };
            ["usestealth"] = false;
            ["gathermaps"] = false;
            ["skillprofile"] = "Crystals2";
            ["condition"] = {
                ["ItemCount(3) < 3000"] = true;
            };
            ["complete"] = {
                ["ItemCount(3) <= 3000"] = false;
            };    
        };
        [4] = {
            ["type"] = "mining";
            ["radius"] = 150;
            ["item1"] = "Earth Crystal";
            ["item2"] = "Earth Shard";    
            ["minlevel"] = 26;
            ["mapid"] = 135;
            ["pos"] =  {
                ["x"] = 257.99;
                ["y"] = 73.48;     
                ["z"] = -318.32;
            };
            ["usestealth"] = false;
            ["gathermaps"] = false;
            ["skillprofile"] = "Crystals2";
            ["condition"] = {
                ["ItemCount(5) < 3000"] = true;
            };
            ["complete"] = {
                ["ItemCount(5) <= 3000"] = false;
            };    
        };
        [2] = {
            ["type"] = "mining";
            ["radius"] = 150;
            ["item1"] = "Wind Crystal";
            ["item2"] = "Wind Shard";    
            ["minlevel"] = 26;
            ["mapid"] = 152;
            ["pos"] =  {
                ["x"] = -45.79;
                ["y"] = -8.35;     
                ["z"] = 292.67;
            };
            ["usestealth"] = false;
            ["gathermaps"] = false;
            ["skillprofile"] = "Crystals2";
            ["condition"] = {
                ["ItemCount(4) < 3000"] = true;
            };
            ["complete"] = {
                ["ItemCount(4) <= 3000"] = false;
            };    
        };
        [6] = {
            ["type"] = "mining";
            ["radius"] = 150;
            ["item1"] = "Lightning Crystal";
            ["item2"] = "Lightning Shard";    
            ["minlevel"] = 26;
            ["mapid"] = 146;
            ["pos"] =  {
                ["x"] = -139.03;
                ["y"] = 20.3;     
                ["z"] = -515.8;
            };
            ["usestealth"] = false;
            ["gathermaps"] = false;
            ["skillprofile"] = "Crystals2";
            ["condition"] = {
                ["ItemCount(6) < 3000"] = true;
            };
            ["complete"] = {
                ["ItemCount(6) <= 3000"] = false;
            };    
        };
        [7] = {
            ["type"] = "mining";
            ["radius"] = 150;
            ["item1"] = "Fire Crystal";    
            ["minlevel"] = 26;
            ["mapid"] = 145;
            ["pos"] =  {
                ["x"] = 134;
                ["y"] = 8.31;     
                ["z"] = -80.08;
            };
            ["usestealth"] = false;
            ["gathermaps"] = false;
            ["skillprofile"] = "Crystals2";
            ["condition"] = {
                ["ItemCount(8) < 3000"] = true;
            };
            ["complete"] = {
                ["ItemCount(8) <= 3000"] = false;
            };    
        };
        [8] = {
            ["type"] = "mining";
            ["radius"] = 150;
            ["item1"] = "Water Crystal";
            ["minlevel"] = 26;
            ["mapid"] = 140;
            ["pos"] =  {
                ["x"] = 98.76;
                ["y"] = 19.78;     
                ["z"] = 94.66;
            };
            ["usestealth"] = false;
            ["gathermaps"] = false;
            ["skillprofile"] = "Crystals2";
            ["condition"] = {
                ["ItemCount(13) < 3000"] = true;
            };
            ["complete"] = {
                ["ItemCount(13) <= 3000"] = false;
            };    
        };
        [9] = {
            ["type"] = "mining";
            ["radius"] = 150;
            ["item1"] = "Ice Crystal";
            ["minlevel"] = 26;
            ["mapid"] = 138;
            ["pos"] =  {
                ["x"] = 486.99;
                ["y"] = 11.92;     
                ["z"] = 334.92;
            };
            ["usestealth"] = false;
            ["gathermaps"] = false;
            ["skillprofile"] = "Crystals2";
            ["condition"] = {
                ["ItemCount(9) < 3000"] = true;
            };
            ["complete"] = {
                ["ItemCount(9) <= 3000"] = false;
            };    
        };
        [10] = {
            ["type"] = "mining";
            ["radius"] = 150;
            ["item1"] = "Earth Crystal";
            ["minlevel"] = 26;
            ["mapid"] = 135;
            ["pos"] =  {
                ["x"] = 257.99;
                ["y"] = 73.48;     
                ["z"] = -318.32;
            };
            ["usestealth"] = false;
            ["gathermaps"] = false;
            ["skillprofile"] = "Crystals2";
            ["condition"] = {
                ["ItemCount(11) < 3000"] = true;
            };
            ["complete"] = {
                ["ItemCount(11) <= 3000"] = false;
            };    
        };
        [11] = {
            ["type"] = "mining";
            ["radius"] = 150;
            ["item1"] = "Wind Crystal";
            ["minlevel"] = 26;
            ["mapid"] = 152;
            ["pos"] =  {
                ["x"] = -45.79;
                ["y"] = -8.35;     
                ["z"] = 292.67;
            };
            ["usestealth"] = false;
            ["gathermaps"] = false;
            ["skillprofile"] = "Crystals2";
            ["condition"] = {
                ["ItemCount(10) < 3000"] = true;
            };
            ["complete"] = {
                ["ItemCount(10) <= 3000"] = false;
            };    
        };
        [12] = {
            ["type"] = "mining";
            ["radius"] = 150;
            ["item1"] = "Lightning Crystal";
            ["minlevel"] = 26;
            ["mapid"] = 146;
            ["pos"] =  {
                ["x"] = -139.03;
                ["y"] = 20.3;     
                ["z"] = -515.8;
            };
            ["usestealth"] = false;
            ["gathermaps"] = false;
            ["skillprofile"] = "Crystals2";
            ["condition"] = {
                ["ItemCount(12) < 3000"] = true;
            };
            ["complete"] = {
                ["ItemCount(12) <= 3000"] = false;
            };    
        };
        [15] = {
            ["type"] = "mining";
            ["radius"] = 150;
            ["item1"] = "Adamantite Ore";
            ["minlevel"] = 50;
            ["mapid"] = 402;
            ["pos"] =  {
                ["x"] = 58.870723724365;
                ["y"] = 8.4112920761108;
                ["z"] = -837.80682373047;
                ["h"] = 1.2847887277603;
            };    
            ["highpriority"] = true;
            ["usestealth"] = true;
            ["resetdaily"] = true;
            ["eorzeaminhour"] = 10;
            ["eorzeamaxhour"] = 12;
            ["mingp"] = 600;
            ["skillprofile"] = "adamantium+kohl";
            ["unspoiled"] = true;
        };
        [20] = {
            ["type"] = "mining";
            ["radius"] = 150;
            ["item1"] = "Adamantite Ore";
            ["minlevel"] = 50;
            ["mapid"] = 402;
            ["pos"] =  {
                ["x"] = 58.870723724365;
                ["y"] = 8.4112920761108;
                ["z"] = -837.80682373047;
                ["h"] = 1.2847887277603;
            };    
            ["highpriority"] = true;
            ["usestealth"] = true;
            ["resetdaily"] = true;
            ["eorzeaminhour"] = 22;
            ["eorzeamaxhour"] = 0;
            ["mingp"] = 600;
            ["skillprofile"] = "adamantium+kohl";
            ["unspoiled"] = true;
       };
        [25] = {
            ["type"] = "mining";
            ["radius"] = 150;
            ["item1"] = "Dunkelstahlerz";
            ["minlevel"] = 50;
            ["mapid"] = 155;
            ["pos"] =  {
                ["x"] = 300.34027099609;
                ["y"] = 306.10778808594;
                ["z"] = -83.804580688477;
            };    
            ["highpriority"] = true;
            ["usestealth"] = true;
            ["resetdaily"] = true;
            ["eorzeaminhour"] = 0;
            ["eorzeamaxhour"] = 2;
            ["mingp"] = 500;
            ["skillprofile"] = "Clusters";
            ["unspoiled"] = true;
        };
    };
};
return obj1
Ich bekomme seit neustem immer den selben error

http://pasteboard.co/2daHXMUd.png

mit diesem script laufe ich schon seit monaten erst seit  neustem is das prob da

habe keine ahnung was das is
hatte ich vorher auch noch nie und nutze bot schon sehr lange
meine chars die ich einloge gehen sammenln als mienearbeiter fals das hilft
nein normaler dsl anschluss , keinerlei abbrüche , nutze kein proxy oder vpn ging ja bis kurz vorm update noch und davor die monate auch.
(03-13-2016, 05:44 PM)fxfire Wrote: [ -> ]Windows version?
Antivirus ?

win 7x64 ultimate und avast
(03-13-2016, 06:34 PM)fxfire Wrote: [ -> ]na dann weißte doch bescheid ;)

http://wiki.mmominion.com/doku.php?id=installation

lief von 03-02-2015 bis vorm letzten ff update ...ich nutze avast schon immer also werde ichs garantiert nich deinstalieren nur fürn bot xD

es lief ja vorher auch Complaint
selbst ohne virus prog und firewall aus des selbe
also avast mal komplet gelöscht usw

http://pasteboard.co/2fVwIQl8.png