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!

[Order Bot] Heavensward Simple Material Grind Profiles

Mr McGibblets

Member
Joined
May 20, 2014
Messages
485
This is some of the personal profiles I had written to help gather some items I didn't feel like hand grinding after the beta movement came out. Keep in mind that all gathering areas have aggressive mobs. You will die, the higher your gatherers level the less chance of you dying. You can AFK these profiles but be sure to check on them periodically. You will likely die at some point. Also keep in mind, these are very populated zones! Best practice to stay close and monitor these profiles because with the influx of players for the expansion and the video posted on the ffxiv facebook. More attention is being given to hunting/spotting bots, so don't use these if you are worried somebody will try calling you out and you aren't there to defend yourself.

Gathering Statement: All of these gathering profiles use <ItemName>, which requires you to have manually have gathered it once to get rid of the "???". If you don't it will act like it doesnt exist and gather something else.

Within reason I'm willing to make more upon request of specific items.

Botany Profiles:

Birch Materials, log/branch/sap - View attachment [BTN] Birch Materials - Voor Sian Siran.xml
Rainbow Cotton Bolls - View attachment [BTN] Rainbow Boll - Twinpools.xml
Rainbow Cotton Bolls (Stealthed) - View attachment [BTN] Rainbow Boll - Twinpools - Stealthed.xml
Stalk of Ramie (Stealthed) - View attachment [BTN] Stalk of Ramie - Chocobo Forest - Stealthed.xml

Mining Profiles:

Aurum Regis Sand - View attachment [MIN] Aurum Regis Sand - Voor Sian Siran.xml
Cloud Mica - View attachment [MIN] Cloud Mica - Landlord Colony.xml
Mythrite Ore - View attachment [MIN] Mythrite Ore - Gorgagne Holding.xml
Mythrite Sand - View attachment [MIN] Mythrite Sand - Twinpools.xml Added a blackspot to this profile. Should avoid one node that the bot is not capable of navigating to.
Hardsilver Sand - View attachment [MIN] Hardsilver Sand - Landlord Colony.xml
Titanium Ore - View attachment [MIN] Titanium Ore - Chocobo Forest.xml
Titanium Ore (Stealthed) - View attachment [MIN] Titanium Ore - Chocobo Forest - Stealthed.xml

Combat Profiles:

Amphiptere Skin - View attachment [O] Amphiptere Skin.xml Manually move to the Delta Quadrant of Azys Lla
Archaeornis Skin - View attachment [O] Archaeornis Skin.xml
Bear Fat - View attachment [O] Bear Fat.xml
Chimera Mane - View attachment [O] Chimera Mane.xml Manually move to the Beta Quadrant of Azys Lla
Cockatrice Thighs - View attachment [O] Cockatrice Thighs.xml Manually move to the Ruling Quarter in The Dravanian Hinterlands
Crawler Cocoon - View attachment [O] Crawler Cocoon.xml Manually move to the Answering Quarter in The Dravanian Hinterlands
Deepeye Tears - View attachment [O] Deepeye Tears.xml
Dhalmel Hides - View attachment [O] Dhalmel Hide.xml
Gastornis Eggs - View attachment [O] Gastornis Eggs.xml
Gelato Flesh - View attachment [O] Gelato Flesh.xml
Griffin Talon - View attachment [O] Griffin Talon.xml Manually move to the Coldwind island NW of Ok'zondu
Icetrap Leaves - View attachment [O] Icetrap Leaf.xml
Loaghtan Chump - View attachment [O] Loaghtan Chump.xml
Okeanis Eggs - View attachment [O] Okeanis Egg.xml
Wooly Yak Milk - View attachment [O] Wooly Yak Milk.xml
Wyvern Skin - View attachment [O] Wyvern Skin.xml May not work correctly without flying supported

FYI I've largely quit playing the game so these profiles are now considered unsupported by me. There is no need to close the thread and discussion should continue within.
 
Last edited:
Thanks for sharing these!
Just asking how difficult it is to implent stealth into these Min/Btn ones? Then it should be able to fully afk those i guess?
 
You would need to edit the profile to move to one of the hotspots first. Then dismount, stealth, disable mount use followed by gather. You would also need to add the codechunks for them. You can do this if you feel its worth it but this will look very silly to be stealthing between all of the nodes. It would look like this (Codechunks are from Zamphire's unspoiled gathering profile)

Code:
<Profile> 
<Name>[BTN] Rainbow Cotton Boll - Coerthas Western Highlands: Twinpools</Name> 
<Order>
<While Condition="True"> 
<If Condition="not IsOnMap(154)"> 
<TeleportTo AetheryteId="71" Name="Falcons Nest"/> 
</If>
<MoveTo Name="Hotspot 1" XYZ="-154.4116, 88.43037, -198.2015"/> 
<RunCode Name="Dismount"/> 
<WaitTimer WaitTime="10"/> 
<RunCode Name="UseStealth"/> 
<WaitTimer WaitTime="10"/> 
<RunCode Name="DisableMount"/>
 <Gather> 
<GatherObject>Lush Vegetation Patch</GatherObject>
 <HotSpots> 
<HotSpot name="1" XYZ="-154.4116, 88.43037, -198.2015" Radius="250"/> 
<HotSpot name="2" XYZ="-131.5645, 92.90305, -322.6191" Radius="250"/> 
<HotSpot name="3" XYZ="-328.45, 80.02023, -337.3642" Radius="250"/> 
</HotSpots> 
<ItemNames>
 <ItemName>Rainbow Cotton Boll</ItemName> 
<!-- <ItemName>Sprig of Mist Dill</ItemName> -->
 </ItemNames> 
<GatheringSkillOrder> 
<GatheringSkill TimesToCast="1" SpellName="Blessed Harvest II"/> 
</GatheringSkillOrder>
 </Gather>
 </While> 
</Order>
<Codechunks>
<CodeChunk Name="UseStealth"> 
<![CDATA[ SpellData data; if (!Core.Me.HasAura("Stealth") && Actionmanager.CurrentActions.TryGetValue("Stealth", out data) && Actionmanager.CanCast(data, Core.Me)) { Actionmanager.DoAction("Stealth", Core.Me); await Buddy.Coroutines.Coroutine.Sleep(500); } ]]>
 </CodeChunk> 
<CodeChunk Name="UnStealth"> 
<![CDATA[ SpellData data; if (Core.Me.HasAura("Stealth") && Actionmanager.CurrentActions.TryGetValue("Stealth", out data) && Actionmanager.CanCast(data, Core.Me)) { Actionmanager.DoAction("Stealth", Core.Me); await Buddy.Coroutines.Coroutine.Sleep(500); } ]]>
 </CodeChunk>
-<CodeChunk Name="DisableMount"> 
<![CDATA[ ff14bot.Settings.CharacterSettings.Instance.UseMount = false; ]]>
 </CodeChunk> 
<CodeChunk Name="EnableMount"> 
<![CDATA[ ff14bot.Settings.CharacterSettings.Instance.UseMount = true; ]]>
 </CodeChunk>
<CodeChunk Name="Dismount"> 
<![CDATA[ ff14bot.Managers.Actionmanager.Dismount(); ]]>
 </CodeChunk>
</CodeChunks>
 </Profile>

In hind site it may be possible to split each hotspot as its own gather tag and move to a safe spot near each pair of nodes that would drop any pulled mobs once getting there before running the stealth scrips. Maybe adding in 2 gather loops. I'll tinker with it later. The issue is my gatherers are max level so its hard for me to judge when and where a sub 60 job would get aggro.
 
Thanks for the fast response, ill try this and will decide if it looks too stupid.
Well im glad you already got them to max level, did you bot them all the way to 60?
 
Thanks for the fast response, ill try this and will decide if it looks too stupid.
Well im glad you already got them to max level, did you bot them all the way to 60?
Only for small periods of time. Mostly I flew around and grabbed all of the half hour unspoiled collectables and turned them in for bundles of xp.
 
I'm new. Where do i place these files once I dl them and how do i run them?

Do i need ORDERUP or do these work alone as is?
 
Yep, for any profile you get just make a folder named profiles and drop them in. Some people have specific SVN's that have all kinds of things inside and require a certain setup but none of that is required for what I have. This should work out of the box with orderbot.
 
Well the setup I thought would work dies. But it looks questionable as all hell. Made a stealth version of the rainbow cotton boll profile. If you use it I recommend changing the hotspots just a little so you don't end up going to the same exact spots as another person.


Edit: if you were looking for a certain one to have stealth added let me know but I'm not a fan of how stealth works with gathering hotspots. It moves to the point, stealths. (i made the gatherpoint the same as stealth spot) Then it moves to gather the nodes but gos back to the starting hotspot before moving on. All gathering in 3.0 currently looks this way since you they aren't near each other to continuously run from node to node without ever going back to the start like you could in 2.0.


Any feedback on how it could look better let me know,
 
Last edited:
So is Order Bot something else that I need to download? I dropped most of the profiles you made here in a folder called "profiles" and when i load up RB the "load profile" button is greyed out...
 
Nice, good job. i actually made most of these grind ones as well! Had some issues with chimera manes and wyvern skins, gonna compare profiles and maybe get some tips for future references.
Thanks again. Also tip for others, if you all would like, i updated some of these mobs attacks into Zekken to avoid them nasty debuffs to help make things a little easier and more afkable friendly. I'll see about adding them to Zekken database on its respective thread if the interest is there.
 
Zekken file

here is my Zekken file that has Crawlers abilities added to it. didnt know how to send in PM.

Edit: replace file in Spell Shapes folder, open plugin in RB and hit compile
 

Attachments

If you can mine the aurum regis sand then you will be perfectly safe there. They are all level 50 mobs and they will drop off before you get to the node. It will have to wait a day or two before I can get to them.
 
[HIDE]Ran into a huge problem on your
.
Onto my way to Moving to next hop: <-414.0844, 92.51424, -447.769> (Moving to gather) D: 78,17615 it just runs into some walls and wont run around. I dont know if its mash based or something.
wwweeeeb5umg.jpg


€: im using <Blackspot Radius="5" X="-334.439331" Y="0" Z="-422.967072" />+<Blackspot Radius="15" X="-393.9554" Y="0" Z="-439.40448" /> now and hope it works :D[/HIDE]


seems to be fixed for my purpose, it skips now the node on that 1 hill tho, i moved the hotspot and put in a blackspot!
View attachment [MIN] Mythrite Sand - Twinpools (1).xml
 
Last edited:
Hello, I was wondering if you could create a profile to farm dragon skin whenever you have free time. Thanks again for all the profiles, I really appreciate it!
 
Back
Top