Search Results for 'fishing'

Forum Forums Search Search Results for 'fishing'

Viewing 15 results - 556 through 570 (of 809 total)
  • Author
    Search Results
  • #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, 11 months ago by kontu kontu.
    • This reply was modified 6 years, 11 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

    #9467

    In reply to: Fishing 1-50?

    Lyfox
    Lyfox
    Participant
    0

    1-50 fishing is so fast that theres no real gain from a scenario. 1-20 is like an hour 20-30 is another hour and you end up 50 before you know it. Just click start on fishing tab and youre good.

    I tried making a scenario for it but figured that letting Miqo simply fish in a certain spot for 1h is fast enough so i didnt bother. I may look into it again if you think it will help.

    #9460

    ps34pc
    Participant

    I see on the index there are fishing 51 and up but are there a set from 1-50 like for the other gathering classes?

    kontu
    kontu
    Participant

    There’s two features related to collectible crafting and gathering I’d love to see –

    One is with gathering, we already have it with fishing, where it requires a minimum collect value for a fish. I’d love to see this available on all gathering, so that when someone is gathering for scrip turn ins their inventory doesn’t get clogged with items with a collectible value too low. So if I could make my gatherer preset only collect collectible if over X rating, and otherwise gather as a normal item instead

    Second is with crafting – I’d love to be able to set a collectability value that once reached, it just finishes the progress. This way I can craft something for scrip turn ins that might only need 460 collectability instead of the max value possible.

    #9384

    Topic: Swordtip


    3rhan
    Participant

    need a Scenario or a navigation for only Swordtip Spearfishing cant found it can anyone link here the scenario to download pls

    #9297

    Topic: leveling crafting

    in forum Discussion

    ps34pc
    Participant

    Now that I am in the 60’s on my gathering for min and bot will get both of those finished soon and start fishing. After that I really want to level all the crafts up.
    I know that “traditionally” its best to try to level up crafts with leves and beast tribes but with the amazing bot and craft simulator thing is it best to just grind(responsibly) since you can make a ton of 1 item over and over again with zero effort once set up?

    #9046

    Topic: Fishing 50


    Genhawk
    Participant

    Anyone have a scenario for Fishing 50? I noticed there is 51 and up on the forums but need at least 50.

    Thanks,

    #8512
    remnar
    remnar
    Participant

    I notice that fishing just uses w/e bait I have equipped at the time. I am wondering if it’s possible for Miqobot to be smart and know what the best bait, weather, and conditions for catching certain fish in a area I want it to? Then switch to another bait, when those conditions are no longer available, for a fish I added on a list?

    #8287

    In reply to: Feature request

    Lyfox
    Lyfox
    Participant
    3+

    Im using keyboard 99% of the time when playing on laptop and cant attach mouse. Touchpad is hell and keyboard does a pretty decent job when i need it. Also if you plug in a controller you can play with the game out of focus. Thats how fishing was done back in the old days. A fish tug sends a vibration on controller and you press the button to launch a fishing macro. Completely legal feature by design. So it would be weird for SE to detect someone based on the input method.

    If anything they can track you hacking the game client. And Miqo does 0% hack which is why its the safest bot you can find on the market.

    #7956

    Topic: Fishing Problem..?

    in forum Discussion
    deano78
    deano78
    Participant

    So, i’m using miqobot to fish at ceruleum plant in ishgard, i’m level 48 fishing but the writing in the box keeps saying..

    “Sorry, couldnt find any icon from group ‘Collector’s Glove’ on your hotbar.”

    SO! I gather it’s on about the lvl 50 skill ‘Collect’.. or am I wrong..? cos I don’t have that unlocked and on my hotbar yet cos of my level. Is there a way to stop this notice.. ? or will I just have to put up with it until I unlock the skill..?

    Thanks

Viewing 15 results - 556 through 570 (of 809 total)