-
AuthorSearch Results
-
March 14, 2019 at 3:23 pm #11155
In reply to: Is there a way to bot longer than 90 mins?
March 14, 2019 at 2:41 pm #11153In reply to: Is there a way to bot longer than 90 mins?
FFXIV servers track the time you spend fishing in one spot, and will prevent you to continue to fish there if you stay longer than around 45min, you’ll get from the game the message that fishes got suspicious and won’t bite any more, forcing you to move to another spot.
And if you keep reaching that limit in the same area, you’ll have to go fish one time in a new area to reset that timer.
That’s why Miqobot prevent you to enter numbers that will for sure trigger that FFXIV protection.
You can create scenarios where you will fish for 40m in one spot, and then make your character to move to another spot and continue to fish, avoiding completely the game protection.
You can really create very elaborated scenarios for fishing, it’s very handy.March 10, 2019 at 10:23 am #11078In reply to: Feature request: Mooch Ignore List
March 9, 2019 at 11:49 pm #11077In reply to: Feature request: Mooch Ignore List
March 9, 2019 at 9:42 pm #11074In reply to: Feature request: Mooch Ignore List
March 9, 2019 at 9:19 pm #11065Topic: Feature request: Mooch Ignore List
in forum DiscussionThere’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.
February 22, 2019 at 3:30 pm #10852In reply to: Patch 4.58 – Miqobot Status
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?
February 14, 2019 at 4:29 pm #10740Topic: How to setup Fishing for Nature Bait??
in forum DiscussionSo 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
February 5, 2019 at 11:57 am #10531In reply to: Index: Gathering Grids
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.January 29, 2019 at 2:40 pm #10404In reply to: FSH Yellow Script Scenario
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?
January 27, 2019 at 10:17 pm #10341In reply to: Request : Fishing Scenario 50 – 60
January 27, 2019 at 10:15 pm #10340In reply to: Request : Fishing Scenario 50 – 60
January 25, 2019 at 11:51 pm #10326In reply to: What exactly can this bot do?
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
January 17, 2019 at 11:08 am #10199In reply to: Crafting [Scenario Generator]
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/sy0QJvARUSedit – 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 wellThis 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());
December 23, 2018 at 4:03 am #9814Topic: Invasion of the Supper Snatchers
in forum Grids and PresetsSimilar 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. -
AuthorSearch Results
Search Results for 'fishing'
-
Search Results
-
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.
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
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.