Search Results for 'fishing'

Forum Forums Search Search Results for 'fishing'

Viewing 15 results - 541 through 555 (of 803 total)
  • Author
    Search Results
  • #11074
    SirVG
    SirVG
    Participant
    0

    I mean on the fishing tab. I’m not running a scenario. I’m looking fir something like the “Gather by Name” box on the gathering tab.

    #11065
    SirVG
    SirVG
    Participant

    There’s a couple of places where while fishing, you have to mooch and the game has a couple of possible returns, and one can lead to a potential infinite loop of mooching.

    Like at Rathefrost, mooching Silverfish/Goldfish can give you Assassin Bettas, which only mooches to itself, leading to a large GP loss. You can’t differentiate by pull either, as Poxpike and Assassin Betta have the same pull.

    So I’d like to see a function where we can exclude a fish from being mooched.

    #10852

    fudgewaffle
    Participant
    0

    So I downloaded this to try it, assuming a trial is still a thing, and even after allowing it in windows firewall and running it as admin, when I try to start fishing it says:

    (8:29:38 AM) Fishing starting…
    (8:29:38 AM) Fishing for: 40 min
    (8:29:38 AM) Oops, was that a disconnection? >.<
    (8:29:38 AM) Guess I’ll need you to log me in again. <3
    (8:29:38 AM) Or maybe I’ll try to respawn ^_^
    (8:29:38 AM) Oh noes, I am logged out! 🙁
    (8:29:38 AM) Oh noes, I am logged out! 🙁

    Any help?

    #10740

    Blackstone30
    Participant

    So i got my first Fishing Quest for catching a Shadow Catfish and it needs Natural Baits. How do i set up Miqobot for catching fish and use them as bait?

    thanks

    #10531

    In reply to: Index: Gathering Grids

    kontu
    kontu
    Participant
    0

    Here’s a grid for Spear Fishing The Ruby Price Depths, noticed we didn’t have one.

    Attachments:
    You must be logged in to view attached files.
    #10404
    Swoopper
    Swoopper
    Participant
    0

    Thank you for making this but I’m having troubles with it.

    Seems that the Miqobot is stopping a few feet back from the actually point to start fishing so it never actually starts fishing until I scoot the character up manually. I’ve tried adjusting the points and you have them as close to the edge as they will go so I’m assuming its a Miqobot issue?

    Do you have any tips on how to overcome having the Miqobot stopping short of points on the grid?

    #10341
    Lyfox
    Lyfox
    Participant
    0

    Probably you forgot to put a fishing Quit icon on hotbar.

    #10340
    k007
    k007
    Participant
    0

    I’m having an issue where it goes into repair screen but still have the fishing line casted so it’s causing an error. Any way to fix this?

    #10326
    Lyfox
    Lyfox
    Participant
    5+

    What exactly can it do?

    Pretty much everything except advanced combat stuff. Fishing, gathering, crafting, spearfishing, unspoileds, ephemerals, collectables, desynthesis, chocoracing, mgp minigames, and tons of other stuff with custom scenarios.
    Combat is in beta. Its a work in progress but itll be able to do everything when its done. For now theres leveling with squadron dungeons and assist mode. You will find most of the answers you seek in beta thread: https://miqobot.com/forum/forums/topic/beta-combat/

    Also, do I have to pay extra for any of the things above or is 10 dollars/month enough?

    Nope. Exactly what they say on website – no hidden charges. $10/mo, period. Even with new features released the price doesnt change.

    Also are there addons made by the community?

    If you mean the ones you install separately? No.
    If you mean presets and custom features? Yea a lot.
    Take a look at sticky threads: https://miqobot.com/forum/forums/forum/grids-and-presets/

    Hi, I tried MMOMinion bot but I keep getting a weird bug and their support keeps ignoring me (seriously, I tried both Discord servers, ticket and forum and nothing so it already annoyed me enough) so, anyway, now I wanna check this bot.

    You wont see that kind of attitude here. Miqo team support is very friendly and highly professional. Use website form to reach them: https://miqobot.com/#support

    #10199
    kontu
    kontu
    Participant
    0

    Neither of these kick out anything for me, which is weird because like I said, I’ve used them before
    https://www.garlandtools.org/db/#list/6IWJn33lRi
    https://www.garlandtools.org/db/#list/sy0QJvARUS

    edit – more info –
    Chrome Version 71.0.3578.98 (Official Build) (64-bit)
    Tried restarting the entire computer to see if it’d change anything, no dice.
    Incognito mode made no difference as well

    This is what I have copied on my clipboard, as evidence I’m not pasting wrong hah

    var rJob = function(val){
       return $(val).find("span.right img.job-icon").attr("src").replace("images/", "").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
          //console.log(reagents.get().map(rRecipe));
          $(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);
             //console.log(rRecipe(this)+":"+(isCraftable?1:0));
             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){
       var dupList = [
          ["Kite Shield", 3],
          ["Goatskin Wristbands", 2],
          ["Hempen Breeches", 2],
          ["Copper Ring", 2],
          ["Lapis Lazuli", 2],
          ["Brass Ring", 2],
          ["Silver Ring", 2],
          ["Garnet", 2],
          ["Mythril Ring", 3],
          ["Horn Staff", 8],
          ["Electrum Ring", 2],
          ["Honey", 8],
          ["Horn Fishing Rod", 2],
          ["Ether", 8],
          ["Poisoning Potion", 2],
          ["Paralyzing Potion", 2],
          ["Blinding Potion", 2],
          ["Sleeping Potion", 2],
          ["Silencing Potion", 2],
          ["Elixir", 7],
          ["Obelisk", 2],
          ["Mailbreaker", 2],
          ["Rampager", 2],
          ["Boarskin Ring", 2],
          ["Pearl", 7],
          ["Astrolabe", 2],
          ["Rose Gold Earrings", 2],
          ["Sarnga", 2],
          ["Mortar", 22],
          ["Campfire", 2],
          ["Oasis Partition", 2],
          ["Manor Fireplace", 2],
          ["Wall Chronometer", 2],
          ["Cloche", 3],
          ["Smithing Bench", 2],
          ["Manor Harp", 2],
          ["Wall Lantern", 2],
          ["Holy Rainbow Hat", 2],
          ["Reading Glasses", 2],
          ["Archaeoskin Boots", 3],
          ["Gaganaskin Gloves", 2],
          ["Gazelleskin Ring", 4],
          ["Hedge Partition", 2],
          ["Wolfram Cuirass", 2],
          ["Wolfram Gauntlets", 2],
          ["Wolfram Sabatons", 2],
          ["Gold Ingot", 2],
          ["Serpentskin Gloves", 3],
          ["Orchestrion", 4],
          ["Camphor", 14],
          ["Cordial", 2],
          ["Survival Hat", 2],
          ["Survival Shirt", 3],
          ["Survival Halfslops", 2],
          ["Survival Boots", 2],
          ["Luminous Fiber", 2],
          ["Teahouse Bench", 2],
          ["Oden", 5],
          ["Near Eastern Antique", 2],
          ["Coerthan Souvenir", 2],
          ["Maelstrom Materiel", 2],
          ["Heartfelt Gift", 2],
          ["Orphanage Donation", 2],
          ["Gyr Abanian Souvenir", 2],
          ["Far Eastern Antique", 2],
          ["Gold Saucer Consolation Prize", 2],
          ["Resistance Materiel", 2],
          ["Sui-no-Sato Special", 2],
          ["Cloud Pearl", 2],
          ["Platinum Ingot", 2],
          ["Griffin Leather", 2],
       ];
       dupList.forEach(function(row){
          miqo = miqo.replace(new RegExp("recipe\\("+row[0]+"\\)", "g"), "recipe("+row[0]+", "+row[1]+")");
       });
       return miqo;
    };
    var scenario = function(){
       var miqo = "";
       miqo += "//Pre-Requisite Crafting\r\n";
       miqo += "solverPreset(recommended)\r\n";
       miqo += "nqhq(balanced)\r\n";
       miqo += "reclaimOff()\r\n\r\n";
       miqo += chapter("PreRequisiteCrafting-section")+"\r\n";
       
       miqo += "//Crafting List\r\n";
       miqo += "solverPreset(recommended)\r\n";
       miqo += "nqhq(balanced)\r\n";
       miqo += "reclaimHQ(50)\r\n\r\n";
       miqo += chapter("CraftingList-section")+"\r\n";
       
       miqo += "//Repair\r\n";
       miqo += "reclaimOff()\r\n";
       miqo += "repair()\r\n";
       miqo = antiDuplicate(miqo);
       //window.prompt("Copy to clipboard: Ctrl+C, Enter", miqo);
       return miqo;
    };
    console.log(scenario());
    
    • This reply was modified 6 years, 3 months ago by kontu kontu.
    • This reply was modified 6 years, 3 months ago by kontu kontu.
    #9814
    Relief
    Relief
    Participant

    Similar to The Icepick- Challenge but for the next quest Invasion of the Supper Snatchers

    flying required, key1 is food
    Invasion of the Supper Snatchers in Dravanian forelands.

    It will buy 2 stacks of stonefly nymph for bait (IDK if it will be enough or too much bait), then fly off to fish for a few hours. It will collect some fish for turn in, cookable fish for cooking and desynthesis the rest.
    After fishing for a few hours it will teleport to Limsa to turn in the collectable fish, repair gear, and desynth fish.

    #9798
    Relief
    Relief
    Participant

    flying required, key1 is food
    The Icepick Challenge in Coerthas Western Highlands. The fishing quest that unlocks cloudfishing.

    It will buy 2 stacks of stonefly nymph for bait (IDK if it will be enough or too much bait), then fly off to fish for a few hours. It will collect Sorcerer Fish for turn in, Keep Lake Urchin, Fanged Clam, Seema Patrician for cooking and desynthesis the rest (including the Icepick, just edit the desynth list).
    After fishing for a few hours it will teleport to Limsa to turn in the sorc fish, repair gear, and desynth fish.

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

    In reply to: Index: Gathering Grids

    Lyfox
    Lyfox
    Participant
    0

    Yea you can select gig settings on gathering tab. Grids are just navigation routes they dont contain settings. You can choose any gig you want and Miqo will auto equip when spearfishing shadows.

    #9681
    Maurith
    Maurith
    Participant

    Hello.. This be my first post on here with something I’ve built.

    Anyway, Noticed not much in the manner for Fisher Yellow Script scenarios… so I figured I’d post one of the ones I use. Chose to go with Ala Mhigan Ribbon because it is an all day, all weather fish that happens to show up in the list quite often. The whole thing takes about 2.5 hours to run thru. I suggest bringing at least 400 Stonefly Larva bait if you plan on running the entire thing. This will not auto-navigate to the location, but you can add that if you like. Also it requires you to change to Fisher; a simple modification you can do to add it in automatically. I typically use this when I am watching a movie so I don’t need all the bells and whistles.

    How this works:
    Go to “The Arms of Mead” in The Peaks, change to Fisher and start the scenario.
    It will load the grid and preset as well as set bait to Stonefly Larva.
    It will take you to the first spot and begin fishing for 30min (If you increase this time you will need more bait!)
    It keeps cycling thru fishing spots until the last one is completed then will teleport you to Ala Ghiri
    When it’s done and depending on RNG… you should have 40+ Ribbons worth trading in. You can always add in a chapter where it turns in the fish or repairs your gear.. the sky’s nearly the limit with this kick ass bot!

    Side note: you can change the bait to Suspending Minnows, but the ribbons don’t bite them as often and with the ignore tugs checked, you will lose them!

    Hope you enjoy this. (Also, let me know if the grid and preset doesn’t load.. I clicked the “link” box but am unsure if it did link them.)

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

    In reply to: Fishing 1-50?


    ps34pc
    Participant
    0

    ok thanks. I havent tried fishing at all in this game. I thought thought it was like the other gathering where you had to go to a bunch of different spots

Viewing 15 results - 541 through 555 (of 803 total)