What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal
RebornBuddy Forums

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

[Animus] Book of Skywind I - Mob Farm

Keebler658

Member
Joined
Mar 18, 2015
Messages
31
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.
 

Attachments

Last edited:
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.
 
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.

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.
 

Attachments

Great work starting this, look forward to more. Hopefully somebody could help build in a mob count also?
 
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.
 
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.
 
I think this is a great start.
Looking forward to see profiles for the other books!!
 
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.

Where on ffxivdb.com are the mob IDs? I can only see fishing, miner and botany items.
 
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...
 
Im in the same boat as you

gHpW2.JPG


there is the mob ID
 
gHpW2.JPG


there is the mob ID

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.
 
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>");
 
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>");

Thanks alot for this.
 
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>");


+1 thanks for this! Will post up the book im doing hopefully later tonight.
 
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>");


This is great - is there a similar to do this for fates?
 
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?
 
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?

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.
 
Thanks for your reply kagepande.

c8e34ef1678aa2fec39639605ac32536.png


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:
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.
 
Back
Top