MMOMinion

Full Version: [module] LedgendaryFisher v1.4.5 (update: 15-08-23)
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
How would one go about adding a custom fish to catch?

I added a new entry in FishData.info, ensured the ID was correct in items-EN.lua, and created a profile to catch them, but the module is still releasing the target fish when it's caught.

This is what was added to FishData.info:
Code:
    [218] = {
            ["Name"] = "Paglth'an discus";
            ["CatchOnlyOnce"] = false;
            ["AddInfo"] = "level 49";
            ["Category"] = "QuestFish";            
            ["Bait"] = "Caddisfly Larva";
            ["IntuitionBait"] = "";
            ["Mooch"] = false;            
            ["Intuition"] = false;
            ["WeatherCondition"] = "";
            ["PreviousWeather"] = "";
            ["StartTime"] = 0;
            ["EndTime"] = 0;
            ["Location"] = "Zahar'ak"
        };

Items-EN.lua:
Code:
[5007] = "Paglth'an discus";

and finally, my profile:
Code:
-- Persistent Data
local multiRefObjects = {

} -- multiRefObjects
local obj1 = {
    [1] = {
        ["Bait"] = "Caddisfly Larva";
        ["Id"] = 218;
        ["Location"] = "Zahar'ak";
        ["Quantity"] = 0;
        ["QuantityHQ"] = 0;
        ["Stealth"] = true;
    };
}
return obj1
Is there a guide on how to install this somewhere? tried to put the folder in luamods and seperate files to all folders, i dont get that option, dosent it work with minionapp?
Put it in your luamods folder
In game click Lua Modules then at the bottom legendary fisher (must restart hack + game)
tried that , it dosent show up.
tried to take out each file as well and put em in the folder nothing
(07-16-2015, 02:46 PM)mistz Wrote: [ -> ]tried that , it dosent show up.
tried to take out each file as well and put em in the folder nothing

Just place the "LegendaryFishing" Folder from the zip into this location:

C:\<Name of your Minion Folder>\Bots\FFXIVMinion\LuaMods\LedgendaryFishing

That's what my path looks like
I love this mod. I do have a few questions though on the proper way to use it. I'm currently using it to level a fisher. I'm probably doing something wrong. I have purchased my gear to equip though out leveling but it will not auto-equip. And it doesn't seem to teleport from zone to zone such as when done with 15-20 will not go to the next spot for 20-25. What am i doing wrong. :)
It seems since the recent major update to the FFXVI minion bot has broken the teleporting for LegendaryFisher. It was working perfect as late as July 21st, but since the two updates it won't teleport for me anymore.

Still love this, it's a great addon, just not sure how to fix it.

EDIT: It seems as well that the weather might be broken since they implemented the bot API weather? Even if the correct weather is up, it won't fish and there is a U next to the other abbreviations such as UWT ?
Regarding the teleporting check this post:
http://www.mmominion.com/Thread-Function...ger-exists
(07-23-2015, 11:06 PM)Acidod Wrote: [ -> ]EDIT: It seems as well that the weather might be broken since they implemented the bot API weather? Even if the correct weather is up, it won't fish and there is a U next to the other abbreviations such as UWT ?

I have written my own weather collector which does the same thing as the original one (scrapes ff14angler.com). It stopped working, too, after 20 July. I fixed it tonight.

Issues that I had to fix:
1. For some reason the browser document was never reaching a completed state, so I put in a loop that checks the completion for 1 minute and then parses whatever is in the document at that point.

2. The area indexes are no longer sequential, after index 22 it skips to 25 then back to 23. I had to redo the part that detects the start of the next area, ignoring the index.

If you're interested here's my dropbox link to the program and source files:

Weather Collector (with source)
Next version of AceLib has some updates including Weather, so you could just use AceLib.API.Weather.GetAll()

http://puu.sh/jclOB/84a5942ddc.jpg
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35