Thread Rating:
  • 23 Vote(s) - 3.48 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Cluster/Crystal/Shard
#54
Nah, I don't get this to work - it drives me crazy, been testing on 32 and 64 bit Version, read all the posts and docs I could find and I just don't find the answer...

Code:
local obj1 = {
    ["setup"] = {
        ["gearsetmining"] = 1;
        ["gearsetbotany"] = 2;
    };
    ["tasks"] = {
        [1] = {
            ["type"] = "botany";
            ["radius"] = 150;
            ["item1"] = "Fire Crystal";
            ["item2"] = "Fire Shard";    
            ["minlevel"] = 26;
            ["mapid"] = 134;
            ["pos"] =  {
                ["x"] = -238.61;
                ["y"] = 15.33;     
                ["z"] = -381.62;
            };
            ["normalpriority"] = true;
            ["usestealth"] = false;
            ["gathermaps"] = false;
            ["skillprofile"] = "Crystals2";
            ["condition"] = {
                ["ItemCount(2) < 9500"] = true;
            };
            ["complete"] = {
                ["GetInventoryItemGains(2) >= 20"] = true;
            };
        };
        [2] = {
            ["type"] = "botany";
            ["radius"] = 150;
            ["item1"] = "Water Crystal";
            ["item2"] = "Water Shard";    
            ["minlevel"] = 26;
            ["mapid"] = 137;
            ["pos"] =  {
                ["x"] = 322.73;
                ["y"] = 32.64;     
                ["z"] = 611.64;
            };
            ["normalpriority"] = true;
            ["usestealth"] = false;
            ["gathermaps"] = false;
            ["skillprofile"] = "Crystals2";
            ["condition"] = {
                ["ItemCount(7) < 9500"] = true;
            };
            ["complete"] = {
                ["GetInventoryItemGains(7) >= 20"] = true;
            };
        };
        [3] = {
            ["type"] = "botany";
            ["radius"] = 150;
            ["item1"] = "Ice Crystal";
            ["item2"] = "Ice Shard";    
            ["minlevel"] = 26;
            ["mapid"] = 153;
            ["pos"] =  {
                ["x"] = -200.58;
                ["y"] = 6.72;     
                ["z"] = 20.94;
            };
            ["normalpriority"] = true;
            ["usestealth"] = false;
            ["gathermaps"] = false;
            ["skillprofile"] = "Crystals2";
            ["condition"] = {
                ["ItemCount(3) < 9500"] = true;
            };
            ["complete"] = {
                ["GetInventoryItemGains(3) >= 20"] = true;
            };    
        };
        [4] = {
            ["type"] = "botany";
            ["radius"] = 150;
            ["item1"] = "Earth Crystal";
            ["item2"] = "Earth Shard";    
            ["minlevel"] = 26;
            ["mapid"] = 154;
            ["pos"] =  {
                ["x"] = 248.11;
                ["y"] = -8.67;     
                ["z"] = 13.69;
            };
            ["radius"] = 80;
            ["normalpriority"] = true;
            ["usestealth"] = false;
            ["gathermaps"] = false;
            ["skillprofile"] = "Crystals2";
            ["condition"] = {
                ["ItemCount(5) < 9500"] = true;
            };
            ["complete"] = {
                ["GetInventoryItemGains(5) >= 20"] = true;
            };    
        };
        [5] = {
            ["type"] = "botany";
            ["radius"] = 150;
            ["item1"] = "Wind Crystal";
            ["item2"] = "Wind Shard";    
            ["minlevel"] = 26;
            ["mapid"] = 148;
            ["pos"] =  {
                ["x"] = 162.92;
                ["y"] = -26.85;     
                ["z"] = 456.67;
            };
            ["normalpriority"] = true;
            ["usestealth"] = false;
            ["gathermaps"] = false;
            ["skillprofile"] = "Crystals2";
            ["condition"] = {
                ["ItemCount(4) < 9500"] = true;
            };
            ["complete"] = {
                ["GetInventoryItemGains(4) >= 20"] = true;
            };    
        };
        [6] = {
            ["type"] = "botany";
            ["radius"] = 150;
            ["item1"] = "Lightning Crystal";
            ["item2"] = "Lightning Shard";    
            ["minlevel"] = 26;
            ["mapid"] = 141;
            ["pos"] =  {
                ["x"] = 158.58;
                ["y"] = 11.65;     
                ["z"] = 470.65;
            };
            ["normalpriority"] = true;
            ["usestealth"] = false;
            ["gathermaps"] = false;
            ["skillprofile"] = "Crystals2";
            ["condition"] = {
                ["ItemCount(6) < 9500"] = true;
            };
            ["complete"] = {
                ["GetInventoryItemGains(6) >= 20"] = true;
            };    
        };
    };
}
return obj1

For what I understand the bot should start farming each shard if the amount of shards is under 9500. Farming 20, go the next task and so on until I got 9500 of each kind.
When I start the script the bots starts farming correctly but doesn't stop - it keeps farming fire shards like crazy.

Please, if anyone of u have a minute give me a clue of what I'm missing or just don't see...  Complaint
Reply
 


Messages In This Thread
Cluster/Crystal/Shard - by jbrawley1 - 10-06-2015, 01:46 PM
RE: Cluster/Crystal/Shard - by sebbs - 10-06-2015, 02:08 PM
RE: Cluster/Crystal/Shard - by jbrawley1 - 10-06-2015, 06:44 PM
RE: Cluster/Crystal/Shard - by happychappy5656 - 10-07-2015, 09:44 PM
RE: Cluster/Crystal/Shard - by dNh301 - 10-07-2015, 10:17 PM
RE: Cluster/Crystal/Shard - by jbrawley1 - 10-07-2015, 10:30 PM
RE: Cluster/Crystal/Shard - by opengrip - 10-08-2015, 06:23 AM
RE: Cluster/Crystal/Shard - by TheBistcuitman - 10-08-2015, 06:30 AM
RE: Cluster/Crystal/Shard - by opengrip - 10-08-2015, 06:36 AM
RE: Cluster/Crystal/Shard - by neocross - 10-08-2015, 06:47 AM
RE: Cluster/Crystal/Shard - by sebbs - 10-08-2015, 06:50 AM
RE: Cluster/Crystal/Shard - by neocross - 10-08-2015, 07:10 AM
RE: Cluster/Crystal/Shard - by jbrawley1 - 10-08-2015, 02:41 PM
RE: Cluster/Crystal/Shard - by neocross - 10-08-2015, 04:32 PM
RE: Cluster/Crystal/Shard - by jbrawley1 - 10-08-2015, 04:36 PM
RE: Cluster/Crystal/Shard - by neocross - 10-08-2015, 06:19 PM
RE: Cluster/Crystal/Shard - by ludijak599 - 10-08-2015, 08:25 PM
RE: Cluster/Crystal/Shard - by brocklesnar - 10-08-2015, 08:51 PM
RE: Cluster/Crystal/Shard - by Wonderland - 10-08-2015, 09:02 PM
RE: Cluster/Crystal/Shard - by ludijak599 - 10-08-2015, 09:11 PM
RE: Cluster/Crystal/Shard - by jbrawley1 - 10-08-2015, 09:15 PM
RE: Cluster/Crystal/Shard - by ludijak599 - 10-11-2015, 01:48 PM
RE: Cluster/Crystal/Shard - by sebbs - 10-11-2015, 02:18 PM
RE: Cluster/Crystal/Shard - by ludijak599 - 10-11-2015, 07:17 PM
RE: Cluster/Crystal/Shard - by jbrawley1 - 10-14-2015, 07:50 PM
RE: Cluster/Crystal/Shard - by yongjae444 - 10-14-2015, 02:08 AM
RE: Cluster/Crystal/Shard - by yongjae444 - 10-14-2015, 10:40 PM
RE: Cluster/Crystal/Shard - by celmaisef - 10-18-2015, 01:21 PM
RE: Cluster/Crystal/Shard - by Bochen - 10-31-2015, 04:14 PM
RE: Cluster/Crystal/Shard - by rev - 10-19-2015, 06:31 PM
RE: Cluster/Crystal/Shard - by Lexus003 - 10-20-2015, 12:29 AM
RE: Cluster/Crystal/Shard - by jchang1210 - 10-20-2015, 07:50 PM
RE: Cluster/Crystal/Shard - by TauTau - 10-24-2015, 03:08 AM
RE: Cluster/Crystal/Shard - by celmaisef - 11-14-2015, 05:06 AM
RE: Cluster/Crystal/Shard - by Mutantx - 11-20-2015, 06:42 PM
RE: Cluster/Crystal/Shard - by Proto - 11-26-2015, 06:05 PM
RE: Cluster/Crystal/Shard - by metrosound - 11-26-2015, 07:09 PM
RE: Cluster/Crystal/Shard - by ledicious - 12-03-2015, 09:21 PM
RE: Cluster/Crystal/Shard - by Hellopandada - 12-29-2015, 04:09 AM
RE: Cluster/Crystal/Shard - by crowmohon - 01-05-2016, 05:50 AM
RE: Cluster/Crystal/Shard - by Uplinkpro - 02-15-2016, 07:24 AM
RE: Cluster/Crystal/Shard - by Jessix - 04-07-2016, 11:45 AM
RE: Cluster/Crystal/Shard - by darkshadow - 06-25-2016, 09:40 PM
RE: Cluster/Crystal/Shard - by Proto - 06-28-2016, 10:07 PM
RE: Cluster/Crystal/Shard - by 03chAos11 - 07-09-2016, 01:49 AM
RE: Cluster/Crystal/Shard - by The Dragon - 09-30-2016, 11:15 PM
RE: Cluster/Crystal/Shard - by jbrawley1 - 09-15-2016, 05:28 PM
RE: Cluster/Crystal/Shard - by superandyhauz - 09-17-2016, 09:19 AM
RE: Cluster/Crystal/Shard - by AbbyBaby - 11-15-2016, 05:50 PM
RE: Cluster/Crystal/Shard - by vilcheat - 04-11-2017, 07:01 AM
RE: Cluster/Crystal/Shard - by krackle - 04-15-2017, 02:52 PM
RE: Cluster/Crystal/Shard - by vilcheat - 04-15-2017, 01:13 AM
RE: Cluster/Crystal/Shard - by Rushmybody - 05-26-2017, 09:36 PM
RE: Cluster/Crystal/Shard - by Rushmybody - 05-27-2017, 10:12 PM
RE: Cluster/Crystal/Shard - by Zanci - 05-28-2017, 02:17 PM
RE: Cluster/Crystal/Shard - by Rushmybody - 05-28-2017, 05:07 PM

Forum Jump:


Users browsing this thread: 2 Guest(s)

We help you win the game.

FFXIV Bot and More.

 

Products