1. FFXIV Reset Timers
    Last daily reset was 13 hours, 22 minutes ago / Next daily reset is in 10 hours, 37 minutes
    Last weekly reset was 4 days, 6 hours, 22 minutes ago / Next weekly reset is in 2 days, 3 hours, 37 minutes
Page 15 of 81 FirstFirst ... 5 13 14 15 16 17 25 65 ... LastLast
Results 281 to 300 of 1615

Thread: Elite Hunt Marks     submit to reddit submit to twitter

  1. #281
    Smells like Onions
    Join Date
    Jul 2014
    Posts
    2
    BG Level
    0
    FFXI Server
    Shiva

    Quote Originally Posted by Anthonystar View Post
    Does that cover the whole zone? I haven't touched XIV app in awhile to know what it can do.
    No, only mobs in draw distance/memory.

  2. #282
    A. Body
    Join Date
    Jun 2007
    Posts
    4,446
    BG Level
    7
    FFXIV Character
    Sir Taint
    FFXIV Server
    Gilgamesh
    FFXI Server
    Cerberus

    Deleted

  3. #283
    BG's most likeable Québécois
    Pens win! Pens Win!!! PENS WIN!!!!!

    Join Date
    Sep 2007
    Posts
    37,887
    BG Level
    10

    im not paying 30$ for somehting im almost done

  4. #284
    Nidhogg
    Join Date
    Oct 2005
    Posts
    3,612
    BG Level
    7
    FFXIV Character
    Glick Wick
    FFXIV Server
    Ultros
    FFXI Server
    Bahamut

    It's not really possible to scan beyond the radius the FFXIV-App already does. The information isn't delivered to you, so there's not much you can do.


    If you really wanted to sell a service, do the following:

    Get a bunch of level 1 accounts on major servers via whatever means.
    Position them in various zones
    Develop a simple bot that teleports them around the zone they are in, much like the RMTs use to mine/gather/fate grind
    Have them scan the areas they teleport to for hunts, and publish this to a service.
    Have people subscribe to that service as a "radar", so they'll get near-real-time updates on mobs.

  5. #285
    BG's most likeable Québécois
    Pens win! Pens Win!!! PENS WIN!!!!!

    Join Date
    Sep 2007
    Posts
    37,887
    BG Level
    10

    i dont care about radius i just want a name filter

  6. #286
    Yoshi P
    Join Date
    Oct 2007
    Posts
    5,103
    BG Level
    8
    FFXI Server
    Ramuh

    The cost of that would be insanely high. Talking like 10+ accounts per server. Guildworks already gives you the pop time for almost all S ranks as it is lol.

  7. #287
    Nidhogg
    Join Date
    Oct 2005
    Posts
    3,612
    BG Level
    7
    FFXIV Character
    Glick Wick
    FFXIV Server
    Ultros
    FFXI Server
    Bahamut

    Quote Originally Posted by Ratatapa View Post
    i dont care about radius i just want a name filter
    I built a shitty name filter into ffxiv-app radar. If I have some time this weekend I'll clean it up for a legit release. It's not the most CPU-friendly software though, as you're checking the existence of something in a dictionary every time a new mob is detected on the radar. Super dense areas might see CPU spikes on weaker builds.


    The cost of that would be insanely high. Talking like 10+ accounts per server. Guildworks already gives you the pop time for almost all S ranks as it is lol.
    The implication is that you'd be stealing the accounts, which is what the gold farmers are doing to sustain their business. Please don't actually do this, I'm just explaining the hypothetical way you'd build something similar to the FFXI Sandworm app, and why it's grossly unreasonable.

  8. #288
    Bagel
    Join Date
    May 2008
    Posts
    1,352
    BG Level
    6

    I managed to farm hunts for 9 hours straight allowing me to get 1 sand. And I completely feel burned out. Echoing what everyone had said already, hunting LSs became useless quick. With 80 people online, parties opt to not share information on the LS channel. They'll use tell or TS instead. On occasions I had to keep the party window open to check where everyone is and if they are gathered in one zone.

    I can't help but think a tiered system like FFXI's ZNM is ways better. A Rank B trigger item dropping occasionally from Duty Roulettes that can be used in any zone to pop the monsters. And each tier has a chance of dropping the trigger of the next in that zone.

    That way, small parties can pop B and kill it with ease. Pop A and find a little challenge fighting it, exploring each monster's abilities and patterns. And finally ask the entire zone to come and help with the rank S they are preparing to pop.

  9. #289
    Yoshi P
    Join Date
    Oct 2007
    Posts
    5,103
    BG Level
    8
    FFXI Server
    Ramuh

    Iv been screaming for a znm system from the start of the game... I loved znm. Give it ilvl100 gear that can't be upgraded much like CT and build up to sand and oils

  10. #290
    Salvage Bans
    Join Date
    Mar 2014
    Posts
    923
    BG Level
    5
    FFXIV Character
    Neon Sea
    FFXIV Server
    Excalibur

    All hunt bosses should be equal or stronger than Gorgi imo. With raid wide Aoe's and mechanics that force non zergs.

  11. #291
    Ridill
    Join Date
    Oct 2006
    Posts
    18,369
    BG Level
    9
    FFXIV Character
    Sath Fenrir
    FFXIV Server
    Cactuar
    FFXI Server
    Fenrir

    Really don't need tools for this, just need to not be lazy and keep track of spawn points. It isn't random by any means, there's just a large (20+?) number of spawn points in each zone that can be shared by A/B/S.

    But then again most people use tools to be lazy, so whatever.

  12. #292
    New Merits
    Join Date
    Oct 2011
    Posts
    214
    BG Level
    4
    FFXI Server
    Bahamut

    Quote Originally Posted by MisterBob View Post
    I built a shitty name filter into ffxiv-app radar. If I have some time this weekend I'll clean it up for a legit release. It's not the most CPU-friendly software though, as you're checking the existence of something in a dictionary every time a new mob is detected on the radar. Super dense areas might see CPU spikes on weaker builds.

    The implication is that you'd be stealing the accounts, which is what the gold farmers are doing to sustain their business. Please don't actually do this, I'm just explaining the hypothetical way you'd build something similar to the FFXI Sandworm app, and why it's grossly unreasonable.
    https://github.com/Icehunter/ffxivap...r.xaml.cs#L279

    It could be this instead:
    Code:
                    var filters = new List<string>()
                    {
                        "mob",
                        "mob 2"
                    };
    
                    var filteredMonsterEntites = monsterEntites.Where(entity => filters.Contains(entity.Name.ToLowerInvariant()));
                    foreach (var actorEntity in filteredMonsterEntites)
    If you have something I can always review/merge it back in for everyone if you're willing to share

    It could also be easy to do mob level:
    Code:
                    var filters = new List<string>()
                    {
                        "mob",
                        "mob 2"
                    };
    
                    var filteredMonsterEntites = monsterEntites.Where(entity => filters.Contains(entity.Name.ToLowerInvariant()) && entity.Level > 50);
                    foreach (var actorEntity in filteredMonsterEntites)

  13. #293
    Smells like Onions
    Join Date
    Jul 2014
    Posts
    1
    BG Level
    0

    Anyone figure out the spawn conditions for Mahisha?

  14. #294
    Cake Mix
    Sweaty Dick Punching Enthusiast

    Join Date
    Sep 2006
    Posts
    30,317
    BG Level
    10
    FFXIV Character
    Cakey Yama
    FFXIV Server
    Leviathan
    FFXI Server
    Unicorn

    Quote Originally Posted by SathFenrir View Post
    Really don't need tools for this, just need to not be lazy and keep track of spawn points. It isn't random by any means, there's just a large (20+?) number of spawn points in each zone that can be shared by A/B/S.

    But then again most people use tools to be lazy, so whatever.
    This bit is pissing me off too. The amount of complaining and needing tools to find things; the mmo crowd just furthers itself into super casual. Also the bitching about WAH NOW EVERYONE GETS i110 WAH. Like.. the fuck? Why does it matter to YOU? It's so dumb. The gear doesn't make the player, after all. Ugh.

    I don't mind Hunts at all. It's the bitching that's the worst, lol

  15. #295
    Dragoon Princess
    My Little Ixion

    Join Date
    Nov 2007
    Posts
    1,668
    BG Level
    6
    FFXIV Character
    Kaiyoko Star
    FFXIV Server
    Sargatanas
    FFXI Server
    Caitsith
    WoW Realm
    Destromath

    Quote Originally Posted by Icehunter View Post
    https://github.com/Icehunter/ffxivap...r.xaml.cs#L279

    It could be this instead:
    Code:
                    var filters = new List<string>()
                    {
                        "mob",
                        "mob 2"
                    };
    
                    var filteredMonsterEntites = monsterEntites.Where(entity => filters.Contains(entity.Name.ToLowerInvariant()));
                    foreach (var actorEntity in filteredMonsterEntites)
    If you have something I can always review/merge it back in for everyone if you're willing to share

    It could also be easy to do mob level:
    Code:
                    var filters = new List<string>()
                    {
                        "mob",
                        "mob 2"
                    };
    
                    var filteredMonsterEntites = monsterEntites.Where(entity => filters.Contains(entity.Name.ToLowerInvariant()) && entity.Level > 50);
                    foreach (var actorEntity in filteredMonsterEntites)
    I can't test it right now because I'm at work, but I think this would work.

    Code:
    var filters = new List<string>()
                    {
                        "Dark Helmet",
                        "Nuhn",
                        "Bonnacon",
                        "Skogs Fru",
                        "Vogaal Ja",
                        "Croque-Mitaine",
                        "Bloody Mary",
                        "Hellsclaw",
                        "Garlok",
                        "Barbastelle",
                        "Unktehi",
                        "Croakadile",
                        "Myradrosh",
                        "Marberry",
                        "Nandi",
                        "Vuokho",
                        "Cornu",
                        "Mahisha",
                        "Stinging Sophie",
                        "Melt",
                        "Wulgaru",
                        "Monarch Ogrefly",
                        "Ghede Ti Malice",
                        "Mindflayer",
                        "White Joker",
                        "Forneus",
                        "Laideronnette",
                        "Phecda",
                        "Girtab",
                        "Thousand-cast Theda",
                        "Naul",
                        "Marraco",
                        "Safat",
                        "Sewer Syrup",
                        "Alectryon",
                        "Zona Seeker",
                        "Gatling",
                        "Maahes",
                        "Lampalagua",
                        "Albin the Ashen",
                        "Zanig'oh",
                        "Nunyunuwi",
                        "Flame Sergeant Dalvag",
                        "Dalvag's Final Flame",
                        "Minhocao",
                        "Ovjang",
                        "Sabotender Bailarina",
                        "Brontes",
                        "Leech King",
                        "Kurrea",
                        "Agrippa"
                    };
    
                    var filteredMonsterEntites = monsterEntites.Where(entity => filters.Contains(entity.Name.ToLowerInvariant()) && entity.Level > 50);
                    foreach (var actorEntity in filteredMonsterEntites)
                    {

  16. #296
    Chram
    Join Date
    Sep 2010
    Posts
    2,667
    BG Level
    7
    FFXI Server
    Quetzalcoatl

    Quote Originally Posted by Akiyama View Post
    This bit is pissing me off too. The amount of complaining and needing tools to find things; the mmo crowd just furthers itself into super casual. Also the bitching about WAH NOW EVERYONE GETS i110 WAH. Like.. the fuck? Why does it matter to YOU? It's so dumb. The gear doesn't make the player, after all. Ugh.

    I don't mind Hunts at all. It's the bitching that's the worst, lol
    Special snowflakes - muh Second Coil.

  17. #297
    The Once and Future Wamoura
    Join Date
    Aug 2005
    Posts
    18,133
    BG Level
    9
    FFXIV Character
    Rocl Montaigne
    FFXIV Server
    Excalibur
    FFXI Server
    Bahamut
    WoW Realm
    Quel'Thalas

    All the hunts in the world won't buy you a High Allagan weapon tho you filthy casuals.

  18. #298
    Chram
    Join Date
    Sep 2010
    Posts
    2,667
    BG Level
    7
    FFXI Server
    Quetzalcoatl

    But what if they sell tomestone materials?

    REMOVE MYTHOLOGY REWARDS NOW.

  19. #299
    Nidhogg
    Join Date
    Oct 2005
    Posts
    3,612
    BG Level
    7
    FFXIV Character
    Glick Wick
    FFXIV Server
    Ultros
    FFXI Server
    Bahamut

    Quote Originally Posted by SathFenrir View Post
    Really don't need tools for this, just need to not be lazy and keep track of spawn points. It isn't random by any means, there's just a large (20+?) number of spawn points in each zone that can be shared by A/B/S.

    But then again most people use tools to be lazy, so whatever.
    Actually, a lot of them can spawn anywhere in the zone pretty much. I have 27 different spawns for Sewer Syrup, for example. If they do have spawn points, there are so many that knowing them is virtually pointless.

  20. #300
    Ridill
    Join Date
    Oct 2006
    Posts
    18,369
    BG Level
    9
    FFXIV Character
    Sath Fenrir
    FFXIV Server
    Cactuar
    FFXI Server
    Fenrir

    Quote Originally Posted by MisterBob View Post
    Actually, a lot of them can spawn anywhere in the zone pretty much. I have 27 different spawns for Sewer Syrup, for example. If they do have spawn points, there are so many that knowing them is virtually pointless.
    The amount of times B / A / S mobs have popped in EXACTLY the same location indicates fixed spawn.

    It's still useful if you map them all and can eliminate small side tracks.

Page 15 of 81 FirstFirst ... 5 13 14 15 16 17 25 65 ... LastLast