Search Results for 'fishing'

Forum Forums Search Search Results for 'fishing'

Viewing 15 results - 676 through 690 (of 806 total)
  • Author
    Search Results
  • #5007

    In reply to: Request: Spearfishing

    FTAC_14
    FTAC_14
    Participant
    0

    I don’t think so, not yet anyway. It would be nice to have though. Spearfishing is pretty time consuming. I am guessing it’s coming in an update.

    #5003

    Naitosama
    Participant

    Hi guys is there a way to spear fishes automatically by Miqobot?

    #4985

    DOVAH
    Participant
    0

    So this script is amazing. I’ve been feeling the empty space where ACME Crafting Bot used to be and this goes a long way towards filling in that gap. (Now if only there was a way to track what items you have inside Miqobot like you can in ACME, or even get the items out of your retainers like it could in later versions)

    I’ve been using it as a bookmarklet in Chrome. You just put the following into a bookmark and when you click on the bookmark it’ll run on the page and show a popup with the info that you can then copy/paste to the script.

    WARNING: It DOES break for crafts with a very large list because it’ll shorten it with a “…” but the output is still there in the console so you can copy it from there as normal.

    
    javascript:var rJob = function(val){ return $(val).children("td:eq(4)").children("img:eq(0)").attr("src").replace("/img/jobs","").replace("/","").replace("-inactive","").replace(".png",""); }; var rRecipe = function(val){ return $(val).children("td:eq(0)").children("a:eq(1)").children("span").text(); }; var rNeeded = function(val){ var txt = $(val).children("td:eq(1)").children("span").text(); var val = $(val).children("td:eq(1)").children("input").val(); return val > 0 ? val : txt; }; var rYields = function(val){ return $(val).attr("data-yields"); }; var rCount = function(val){ return Math.ceil(rNeeded(val)/rYields(val)); }; var chapter = function(tableId){ var reagents = $("tbody#"+tableId).children("tr.reagent").not(".success"); reagents.sort(function(a, b){ var lvlA = parseInt( $(a).attr("data-ilvl") ); var lvlB = parseInt( $(b).attr("data-ilvl") ); return (lvlA < lvlB) ? -1 : (lvlA > lvlB) ? 1 : 0; }); for(var i=0; i<reagents.length; i++){ var craftsLater = []; var from = -1; var to = -1; $(reagents.get().reverse()).each(function(index){ var itemId = $(this).attr("data-item-id"); var requires = $(this).attr("data-requires").split("&").map(function(value){ return value.split("x")[1]; }); var isCraftable = requires.reduce(function(isCraftable, requireId){ if(!isCraftable) return false; if(craftsLater.indexOf(requireId)>=0){ from = index; to = craftsLater.indexOf(requireId); return false; } return true; }, true); if(!isCraftable) return false; craftsLater.push(itemId); }); if(from < 0 || to < 0) break; from = reagents.length-1 - from; to = reagents.length-1 - to; reagents.splice(to, 0, reagents.splice(from, 1)[0]); } var miqo = ""; reagents.each(function(){ miqo += "job("+rJob(this)+")\r\n"; miqo += "recipe("+rRecipe(this)+")\r\n"; miqo += "craft("+rCount(this)+")\r\n"; }); miqo += "//--Section crafts: "+reagents.get().reduce(function(allCount, val){ return allCount+rCount(val); },0)+"\r\n"; return miqo; }; var antiDuplicate = function(miqo){ miqo = miqo.replace(/recipe\(Kite Shield\)/g, "recipe(Kite Shield, 3)"); miqo = miqo.replace(/recipe\(Goatskin Wristbands\)/g, "recipe(Goatskin Wristbands, 2)"); miqo = miqo.replace(/recipe\(Hempen Breeches\)/g, "recipe(Hempen Breeches, 2)"); miqo = miqo.replace(/recipe\(Copper Ring\)/g, "recipe(Copper Ring, 2)"); miqo = miqo.replace(/recipe\(Lapis Lazuli\)/g, "recipe(Lapis Lazuli, 2)"); miqo = miqo.replace(/recipe\(Brass Ring\)/g, "recipe(Brass Ring, 2)"); miqo = miqo.replace(/recipe\(Silver Ring\)/g, "recipe(Silver Ring, 2)"); miqo = miqo.replace(/recipe\(Garnet\)/g, "recipe(Garnet, 2)"); miqo = miqo.replace(/recipe\(Mythril Ring\)/g, "recipe(Mythril Ring, 3)"); miqo = miqo.replace(/recipe\(Horn Staff\)/g, "recipe(Horn Staff, 8)"); miqo = miqo.replace(/recipe\(Electrum Ring\)/g, "recipe(Electrum Ring, 2)"); miqo = miqo.replace(/recipe\(Honey\)/g, "recipe(Honey, 8)"); miqo = miqo.replace(/recipe\(Horn Fishing Rod\)/g, "recipe(Horn Fishing Rod, 2)"); miqo = miqo.replace(/recipe\(Ether\)/g, "recipe(Ether, 8)"); miqo = miqo.replace(/recipe\(Poisoning Potion\)/g, "recipe(Poisoning Potion, 2)"); miqo = miqo.replace(/recipe\(Paralyzing Potion\)/g, "recipe(Paralyzing Potion, 2)"); miqo = miqo.replace(/recipe\(Blinding Potion\)/g, "recipe(Blinding Potion, 2)"); miqo = miqo.replace(/recipe\(Sleeping Potion\)/g, "recipe(Sleeping Potion, 2)"); miqo = miqo.replace(/recipe\(Silencing Potion\)/g, "recipe(Silencing Potion, 2)"); miqo = miqo.replace(/recipe\(Boarskin Ring\)/g, "recipe(Boarskin Ring, 2)"); miqo = miqo.replace(/recipe\(Rose Gold Earrings\)/g, "recipe(Rose Gold Earrings, 2)"); miqo = miqo.replace(/recipe\(Mortar\)/g, "recipe(Mortar, 21)"); miqo = miqo.replace(/recipe\(Campfire\)/g, "recipe(Campfire, 2)"); miqo = miqo.replace(/recipe\(Manor Fireplace\)/g, "recipe(Manor Fireplace, 2)"); miqo = miqo.replace(/recipe\(Wall Chronometer\)/g, "recipe(Wall Chronometer, 2)"); miqo = miqo.replace(/recipe\(Cloche\)/g, "recipe(Cloche, 3)"); miqo = miqo.replace(/recipe\(Smithing Bench\)/g, "recipe(Smithing Bench, 2)"); miqo = miqo.replace(/recipe\(Wall Lantern\)/g, "recipe(Wall Lantern, 2)"); miqo = miqo.replace(/recipe\(Holy Rainbow Hat\)/g, "recipe(Holy Rainbow Hat, 2)"); miqo = miqo.replace(/recipe\(Reading Glasses\)/g, "recipe(Reading Glasses, 2)"); miqo = miqo.replace(/recipe\(Gaganaskin Gloves\)/g, "recipe(Gaganaskin Gloves, 2)"); miqo = miqo.replace(/recipe\(Gold Ingot\)/g, "recipe(Gold Ingot, 2)"); miqo = miqo.replace(/recipe\(Orchestrion\)/g, "recipe(Orchestrion, 4)"); miqo = miqo.replace(/recipe\(Camphor\)/g, "recipe(Camphor, 14)"); miqo = miqo.replace(/recipe\(Cordial\)/g, "recipe(Cordial, 2)"); miqo = miqo.replace(/recipe\(Survival Hat\)/g, "recipe(Survival Hat, 2)"); miqo = miqo.replace(/recipe\(Survival Shirt\)/g, "recipe(Survival Shirt, 3)"); miqo = miqo.replace(/recipe\(Survival Halfslops\)/g, "recipe(Survival Halfslops, 2)"); miqo = miqo.replace(/recipe\(Survival Boots\)/g, "recipe(Survival Boots, 2)"); miqo = miqo.replace(/recipe\(Luminous Fiber\)/g, "recipe(Luminous Fiber, 2)"); miqo = miqo.replace(/recipe\(Near Eastern Antique\)/g, "recipe(Near Eastern Antique, 2)"); miqo = miqo.replace(/recipe\(Coerthan Souvenir\)/g, "recipe(Coerthan Souvenir, 2)"); miqo = miqo.replace(/recipe\(Maelstrom Materiel\)/g, "recipe(Maelstrom Materiel, 2)"); miqo = miqo.replace(/recipe\(Heartfelt Gift\)/g, "recipe(Heartfelt Gift, 2)"); miqo = miqo.replace(/recipe\(Orphanage Donation\)/g, "recipe(Orphanage Donation, 2)"); miqo = miqo.replace(/recipe\(Platinum Ingot\)/g, "recipe(Platinum Ingot, 2)"); return miqo; }; var scenario = function(){ var miqo = ""; miqo += "//Pre-Requisite Crafting\r\n"; miqo += "solverPreset(recommended)\r\nnqhq(balanced)\r\nreclaimOff()\r\n\r\n"; miqo += chapter("PreRequisiteCrafting-section")+"\r\n"; miqo += "//Crafting List\r\n"; miqo += "solverPreset(recommended)\r\nnqhq(balanced)\r\nreclaimHQ(50)\r\n\r\n"; miqo += chapter("CraftingList-section")+"\r\n"; miqo += "//Repair\r\n"; miqo += "reclaimOff()\r\nrepair()\r\n"; miqo = antiDuplicate(miqo); window.prompt("Copy to clipboard: Ctrl+C, Enter", miqo); return miqo; }; console.log(scenario());
    
    #4932
    Gabriel
    Gabriel
    Participant
    0

    Sorry for the late response Goblin – I’ve been on vacation!

    What I meant to say before was that the rotation was working perfectly for dusklight and I plugged in Doman Yellow and Almandine nodes so that I could gather Dusklight and it was working well, but now I know that spearfishing is a much more effective way to get those!
    Can’t wait for Miqo to be able to spearfish.

    #4884
    Miqobot
    Miqobot
    Keymaster
    3+

    Thank you for your undying interest very much!

    We are already in the final phase of research, so please hold on there just a little longer. Data samples are being collected by a distrbuted AI algorithm over 11 accounts simultaneously, but we still need about 50,000 samples to achieve decent stability factor of Crafting Solver. Spearfishing is almost ready as well.
    We will be posting announcements and analysis reports very soon.

    #4863

    In reply to: Spearfishing

    Goblin.jpg
    Goblin.jpg
    Participant
    0

    I’m waiting for spearfishing too ^^

    #4861

    Montie
    Participant
    0

    Hi.

    I was just wondering if you have any idea when you will have the 70 crafting skills complete, as well as the spearfishing. ??

    #4835

    na9oor177
    Participant
    0

    Spearfishing can’t be done yet. Miqobot is still being updated to support underwater movement & spearfishing, and it will probably take a while cause its a completely new feature.

    #4832

    Kharista
    Participant
    0

    Hey, thank you na9oor177 and Lyfox for those scenarios, all of them work flawlessly!
    question tho, can spearfishing be used in scenario aswell? because most of profitable fish can only be caught by using spearfishing in SB maps.

    #4774

    In reply to: Spearfishing


    smaller
    Participant
    0

    any information about Stage 2 and when the bot will be able to do Spearfishing? since my subscrip going to run out soon, so i will wait until spearfishing works before i renew since that the only thing that i need atm most.

    #4764

    Mirara
    Participant
    0

    Ok finished for 55-60. This one grinds the volcano area next to Anyx Trine. Requires hellfishing so make sure youve done your 55 fisher quest. Besides 55 it contains 56 and 57 fishing spots but Miqo will just skip them if youre not high enough. After a couple of hours she will come back and by then it should be fine. Also every 2-3 hours she will return to your home point and afk. It will take 9-10 hours in total so imo its kinda important.

    Requirements:
    – Hellfishing unlocked.
    – 55 left side gear. Melding is not needed.
    – Right side is not needed. It uses Chum but 400 GP will do just fine.
    – Repair icon on hotbar.
    – Return and sit icons on hotbar.
    – 15x stacks of Magma Worm. For 3 scenario cycles.

    Would you be so kind to do 60-70 as well? Or perhaps share the locations to do 60-70 so that I can afk, doesn’t necessarily need to be a scenario.

    #4748
    Lyfox
    Lyfox
    Participant
    2+

    Ok finished for 55-60. This one grinds the volcano area next to Anyx Trine. Requires hellfishing so make sure youve done your 55 fisher quest. Besides 55 it contains 56 and 57 fishing spots but Miqo will just skip them if youre not high enough. After a couple of hours she will come back and by then it should be fine. Also every 2-3 hours she will return to your home point and afk. It will take 9-10 hours in total so imo its kinda important.

    Requirements:
    – Hellfishing unlocked.
    – 55 left side gear. Melding is not needed.
    – Right side is not needed. It uses Chum but 400 GP will do just fine.
    – Repair icon on hotbar.
    – Return and sit icons on hotbar.
    – 15x stacks of Magma Worm. For 3 scenario cycles.

    Attachments:
    You must be logged in to view attached files.
    #4649
    Lyfox
    Lyfox
    Participant
    3+

    Heres mine for 51-55 fisher. Its a grind in Falcon’s Nest in three different spots. It will navigate, equip bait, fish for 25-27 min, and repeat. Self repair after each fishing session.
    Try it and let me know how it goes. If you like it i can make 55+ later.

    What you have to know before starting:
    – Any gear should be fine but i recommend full 51 left side. Melding is not needed.
    – Right side gear is not needed, this preset doesnt use GP.
    – Repair icon on your hotbar and enough dark matter in inventory.
    – 6x stacks of Stonefly Nymph.
    – 3x stacks of Balloon Bug.
    This should be enough for 3 scenario cycles (about 4-5 hours). You can change the number in repeatAll() in the last chapter.

    Also ive discovered a cool Timeworn Map trick. If you have it in your inventory and catch another one it drops back into water but you receive full exp for the catch. If you keep snagging on you will be catching maps over and over again. Archaeoskin map is level 55 which is the highest fish in this area. This way you get more exp per hour.
    So buy a bottle of Archaeoskin map from MB before you go. You dont lose anything anyway.

    Attachments:
    You must be logged in to view attached files.
    #4608

    In reply to: Spearfishing

    Miqobot
    Miqobot
    Keymaster
    0

    Yes, Spearfishing support is planned for Stormblood Upgrade Stage 2.
    Thank you for your patience very much!

    #4607

    Kharista
    Participant

    Can anyone share their scenario for fishing 50 – 60?
    i am having a hard time to understand how the scenario works in miqobot, whatever the scenario i put, it would fail and i gave up trying by now, so if you do, please share it here. Thank you!

Viewing 15 results - 676 through 690 (of 806 total)