• Visit Rebornbuddy
  • [Animus] Book of Skywind I - Mob Farm

    Discussion in 'Grinding Profiles' started by Keebler658, Mar 18, 2015.

    1. Keebler658

      Keebler658 Member

      Joined:
      Mar 18, 2015
      Messages:
      31
      Likes Received:
      1
      Trophy Points:
      8
      This is my first attempt at creating any Orderbot profiles, so please be gentle.

      The profiles are currently broken up to each enemy that you need to kill 10 of. So it is not as automated as I would like but maybe it's a start. It will basically just teleport you to the zone and go farm the mobs until you stop the bot. I was thinking maybe adding an item count from drops to stop the profile and move on to the next enemy would work, but I could not find info on drops from all the mobs. It would also require writing one profile with the correct conditions.

      I am very slowly working on my Animus progression so this will take some time unless others start logging the info needed and we can create a set for the books.

      Again these are not likely to be optimized at all but they worked for me! Good Luck!!!

      ---------------------------------------------------------------------------------------------------------------------------

      Update 3/25/15 - I have incorporated the Skyfall I & II books updated to use MobIDs, courtesy of xerons. These are untested by myself so please let me know if there are any issues. Skywind II to come soon.

      Animus Spreadsheet - Also I am working on a spreadsheet that anyone can input the book details and we can work together to get profiles for each book.
       

      Attached Files:

      Last edited: Mar 26, 2015
    2. Hbk

      Hbk New Member

      Joined:
      Jan 26, 2015
      Messages:
      14
      Likes Received:
      0
      Trophy Points:
      0
      What's the easiest way to make similar profiles? I could probably make some while I'm doing mine, but I don't know much about creative the profiles.
       
    3. Keebler658

      Keebler658 Member

      Joined:
      Mar 18, 2015
      Messages:
      31
      Likes Received:
      1
      Trophy Points:
      8
      You could just copy one of the ones I have made and make changes. The mob IDs came from FFXIVdb.com also I used the Aetheryte teleport text file for the id and location. Also used the RebornConsole plugin for the 3-point location needed for the mob locations, I found having 2-3 hotspots made for the best farming. You just paste the following command and hit run:

      Log("{0} {1}",WorldManager.ZoneId,Core.Player.Location);

      Let me know if you I can help with anything else. I am going on vacation for a few days so won't be able to make changes but will check the forum occasionally.
       

      Attached Files:

    4. Djdave

      Djdave New Member

      Joined:
      Feb 22, 2015
      Messages:
      166
      Likes Received:
      1
      Trophy Points:
      0
      Great work starting this, look forward to more. Hopefully somebody could help build in a mob count also?
       
    5. Keebler658

      Keebler658 Member

      Joined:
      Mar 18, 2015
      Messages:
      31
      Likes Received:
      1
      Trophy Points:
      8
      Yeah if anyone has any idea on how to do a kill count I would definitely try adding it. I think it has to be a custom tag.
       
    6. iyake

      iyake Member

      Joined:
      Oct 19, 2014
      Messages:
      143
      Likes Received:
      5
      Trophy Points:
      18
      This is great.

      You can try using GamelogManager to look for "You defeat <x>" to get a count of kills. I think it would even show you the messages you get when making progress at the steps.
       
    7. tongcy

      tongcy New Member

      Joined:
      Sep 15, 2014
      Messages:
      2
      Likes Received:
      0
      Trophy Points:
      0
      I think this is a great start.
      Looking forward to see profiles for the other books!!
       
    8. Djdave

      Djdave New Member

      Joined:
      Feb 22, 2015
      Messages:
      166
      Likes Received:
      1
      Trophy Points:
      0
      Where on ffxivdb.com are the mob IDs? I can only see fishing, miner and botany items.
       
    9. Aressandoro

      Aressandoro Member

      Joined:
      Jan 8, 2011
      Messages:
      193
      Likes Received:
      1
      Trophy Points:
      18
      Thank you alot! Testing it right now :)
      I would be so happy if you make profiles also for other books and if some dev can help you with a kill count it would be so awesome...
       
    10. EricGelinas

      EricGelinas New Member

      Joined:
      Apr 26, 2013
      Messages:
      1
      Likes Received:
      0
      Trophy Points:
      1
      Im in the same boat as you
       
    11. BigBudda87

      BigBudda87 Member

      Joined:
      May 5, 2012
      Messages:
      243
      Likes Received:
      0
      Trophy Points:
      16
      [​IMG]

      there is the mob ID
       
    12. Tinytox

      Tinytox Member

      Joined:
      Nov 5, 2014
      Messages:
      370
      Likes Received:
      7
      Trophy Points:
      18
      And, as a bonus, that paint job is a stick figure!

      But seriously, this is totally good advice, it works, and it's probably the easiest method of finding mob ID's, Item ID's, synthesis ID's, Quest ID's, etc.
       
    13. iyake

      iyake Member

      Joined:
      Oct 19, 2014
      Messages:
      143
      Likes Received:
      5
      Trophy Points:
      18
      Here's what I use when I want to slap together an order bot profile to grind one mob really quick, paste this into your reborn console. Go to the middle of where your mobs spawn target the mob you want to grind and then run the console window. Paste the output into a blank xml file and then load it up in orderbot. You'll likely want to tweak the range and add a teleport if you want to create a more robust profile.

      Code:
      ClearLog();
      Log("<?xml version=\"1.0\" encoding=\"UTF-8\"?>");
      Log("<Profile>");
      Log("    <Name>Generated Grind Profile</Name>");
      Log("    <KillRadius>50</KillRadius>");
      Log("    <GrindAreas>");
      Log("        <GrindArea name=\"{0}\">", Regex.Replace(Core.Player.CurrentTarget.Name, @"\s+", ""));
      Log("            <Hotspots>");
      Log("                <Hotspot Radius=\"120\" XYZ=\"{0}, {1}, {2}\" />", Core.Player.X, Core.Player.Y, Core.Player.Z);
      Log("            </Hotspots>");
      Log("            <TargetMobs>");
      Log("                <TargetMob Name=\"{0}\" Id=\"{1}\" />", Core.Player.CurrentTarget.Name, Core.Player.CurrentTarget.NpcId);
      Log("            </TargetMobs>");
      Log("            <MinLevel>0</MinLevel>");
      Log("            <MaxLevel>50</MaxLevel>");
      Log("        </GrindArea>");
      Log("    </GrindAreas>");
      Log("");
      Log("    <Order>");
      Log("        <Grind grindRef=\"{0}\" PostCombatDelay=\"1.5\" While=\"True\" />", Regex.Replace(Core.Player.CurrentTarget.Name, @"\s+", ""));
      Log("    </Order>");
      Log("</Profile>");
       
    14. Aressandoro

      Aressandoro Member

      Joined:
      Jan 8, 2011
      Messages:
      193
      Likes Received:
      1
      Trophy Points:
      18
      Thanks alot for this.
       
    15. Djdave

      Djdave New Member

      Joined:
      Feb 22, 2015
      Messages:
      166
      Likes Received:
      1
      Trophy Points:
      0

      +1 thanks for this! Will post up the book im doing hopefully later tonight.
       
    16. Hbk

      Hbk New Member

      Joined:
      Jan 26, 2015
      Messages:
      14
      Likes Received:
      0
      Trophy Points:
      0

      This is great - is there a similar to do this for fates?
       
    17. Aressandoro

      Aressandoro Member

      Joined:
      Jan 8, 2011
      Messages:
      193
      Likes Received:
      1
      Trophy Points:
      18
      Seems that mastahg ignored my question and deleted it and don't know why. By the way my question was about a kill count. Is there a method to add this? Maybe can we read the message from client side that says we are 10/10 with this mob and go to the next location?
       
    18. kagepande

      kagepande Community Developer

      Joined:
      Oct 20, 2014
      Messages:
      289
      Likes Received:
      11
      Trophy Points:
      18
      This has been answered 1001 times, create your own custom tag for KillCount or don't, and stop asking and learn to use the search function.
       
    19. Aressandoro

      Aressandoro Member

      Joined:
      Jan 8, 2011
      Messages:
      193
      Likes Received:
      1
      Trophy Points:
      18
      Thanks for your reply kagepande.

      [​IMG]

      This is what you get by searching Kill Count in the rebornbuddy forum. If you know how to make this can you write and example?
      P.S: If I don't know how to use the search function properly can you please illuminate me? :(
       
      Last edited: Mar 21, 2015
    20. kagepande

      kagepande Community Developer

      Joined:
      Oct 20, 2014
      Messages:
      289
      Likes Received:
      11
      Trophy Points:
      18
      It means that the words Kill Count come up in those threads, so by reading those threads your question is probably answered there. As far as the KillCount tag, I could most likely make it but I have no desire to do so since I have all my mains classes to at least animus(Remember the community developers here release plugins/botbases/profiles for free using their own time, if it doesn't interest them, it will prob never happen because no desire to). You can take a look into other custom tags released here(Fishing Tag for example), see how its done and try to work from there, your gonna wanna read up on programming though haha, also you can use the developer support once you get started for help. Newb23 did and now hes got a rough working plugin out already.
       

    Share This Page