MMOMinion

Full Version: Issue with collectables
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Hello,

I tried using the script provided here http://www.mmominion.com/thread-16268-po...#pid153414 
The script is working fine with the English client of the game.
But I'm using the French client. So I translated every items in the script. Now the bot understands what it needs to gather. But it always reject the collectible as if the rarity wasn't high enough. This is what I get in the console

Code:
Code:
Collectibility was too low [0]
collectibility rating not approved
Item current rarity [321]
Item required rarity [0]


321 if the collection value and the script needs it to be at least 300, so it should get collected.

I attached the translated script. Is this a problem with the bot or am I missing something?
Thanks
["collectables"] = {
["Sauge sclarée"] = 301;
["Menthe douce"] = 301;
["Origan"] = 301;
};

["collectables"] = {
[12971] = 0;
[12972] = 0;
[12973] = 0;
[15948] = 0;
[12968] = 0;
[12969] = 0;
[12970] = 0;
[15949] = 0;
};
Thanks, it works!

But what are these numbers from? What can I do if I need to translate another script? And why does it work with English names but not the French ones?
item ids,
can be translation errors but id is read directly from the bot
Hey, I still have the issue. I tried to translate another script:

Code:
        [6] = {
            ["type"] = "botany";
            ["radius"] = 300;
            ["item1"] = "Branche de hêtre";
            ["minlevel"] = 70;
            ["mapid"] = 612;
            ["pos"] =  {
                ["x"] = -472.13977050781;
                ["y"] = 98.533432006836;
                ["z"] = -197.8917388916;
            };    
            ["highpriority"] = true;
            ["usestealth"] = true;
            ["resetdaily"] = true;
            ["eorzeaminhour"] = 18;
            ["eorzeamaxhour"] = 20;
            ["mingp"] = 600;
            ["skillprofile"] = "Gathering_Blue";
            ["unspoiled"] = true;
            ["collectables"] = {
                [19936] = 450;
            };
        };

I'm trying to gather this collectible: http://xivdb.com/item/19936/
But it gets rejected even when i'm using the id... The console says:

Code:
Item current rarity [459].
Cannot collect item [Branche de h\xc3\xaatre], collectibility rating not approved.
Hm, weird should work, but i am not using the id there.

["collectables"] = {
[Branche de hêtre]= 450;

try that. If that isnt working try it with the english word of the collectable.
I tried with this:

Code:
            ["collectables"] = {
                [19936] = 450;
                ["Branche de hêtre"] = 450;
                ["Beech Branch"] = 450;
            };

But it's still not working :/
Any idea on how I can fix this?
Hey, I posted this support thread 10 days ago.
The main reason I tried your bot is because gathering is so boring. So if you can't fix my problem, please just say it and give me a refund.
Thanks!
Could you try it again, when you change your language in english? That would be a proof i think, thats an issue with the language because for myself it works in german.
Pages: 1 2