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!

[OrderBot][Gathering] Mega Profile Thread - Leveling, Questing, Farming

Hey, I suggest you do some googling to find out what is required to start the profession miner/botanist before you try running these profiles. Once you get a character to level 15 you can go to the botanist or mining guild in game and do the quest to start that profession. Then you must equip the main hand weapon to change into that class, then you can start the bot and have a beer while you get leveled.

Actually, all you need to run these profile is the aetherytes unlocked, and be able to accept quests from new Guilds, it will unlock the class for you, equip your first main hand weapon and then continue on its way :)
 
Actually, all you need to run these profile is the aetherytes unlocked, and be able to accept quests from new Guilds, it will unlock the class for you, equip your first main hand weapon and then continue on its way :)
Oh that's actually awesome I didn't realize you had that built in.
 
I'm running the mining crystal farm profile, but it was quite awhile and I had noticed it was only mining shards, I manually mined the crystal to unlock it since it showed the bag with 25% chance, and then it finally started mining crystals, is that normal? Will I have to do that for all the crystals?
 
I'm running the mining crystal farm profile, but it was quite awhile and I had noticed it was only mining shards, I manually mined the crystal to unlock it since it showed the bag with 25% chance, and then it finally started mining crystals, is that normal? Will I have to do that for all the crystals?

I'm going to take a kinda educated guess at this. What I'm thinking is because an elemental crystal and shard (ie. Fire) has the same ID, which I assume are both 8, RB can't exactly distinguish which is which. The way the profile decides which one is to mine is by clicking at the ore with the specified name. The code below says that it'll mine Fire Crystal if available and if it's not then it'll mine Fire Shard. But note: It'll mine by name if it sees the name in the list.

Code:
         <ItemNames>
          <ItemName>Fire Crystal</ItemName>
          <ItemName>Fire Shard</ItemName>
        </ItemNames>
 
I'm going to take a kinda educated guess at this. What I'm thinking is because an elemental crystal and shard (ie. Fire) has the same ID, which I assume are both 8, RB can't exactly distinguish which is which. The way the profile decides which one is to mine is by clicking at the ore with the specified name. The code below says that it'll mine Fire Crystal if available and if it's not then it'll mine Fire Shard. But note: It'll mine by name if it sees the name in the list.

Fire Shards and Fire Crystals have separate IDs. Shard being #2 and Crystal being #8. Point being, if you're gathering by ItemName, the ItemName needs to be readable from the window. If the character hasn't harvested a particularly named item before, the bot will simply ignore it and skip to the next ItemName that is identified. The only way to target items that you've never gathered before would be by using Slot # identifiers, but that should only be used for Unspoiled Nodes as the ItemName will never be readable right from the start.

Best practice in using the shards/crystal profiles would most likely be to make sure you've gotten the items yourself manually at least once before attempting to run the profile, otherwise it'll end up gathering the only item it knows, or worse, none at all.
 
Last edited:
Edited due to me bringing up an issue I already brought up before and you saying you would be looking into it. I must be tired and cranky lol.
 
Last edited:
I put the botany 1-50 to the buddy folder i just extracted, aswell as created a Custom folder with YesTalkTo/In files, when i load a custom profile it seems to be load correctly, but as soon as i start the bot the ff14bot is force closing... did i anything wrong?
 
Fire Shards and Fire Crystals have separate IDs. Shard being #2 and Crystal being #8. Point being, if you're gathering by ItemName, the ItemName needs to be readable from the window. If the character hasn't harvested a particularly named item before, the bot will simply ignore it and skip to the next ItemName that is identified. The only way to target items that you've never gathered before would be by using Slot # identifiers, but that should only be used for Unspoiled Nodes as the ItemName will never be readable right from the start.

Best practice in using the shards/crystal profiles would most likely be to make sure you've gotten the items yourself manually at least once before attempting to run the profile, otherwise it'll end up gathering the only item it knows, or worse, none at all.

Partly correct, using <Slot> over <ItemName> should be used almost every that it can be, I havent tested but the reason why I havent tested, is because on the nodes that have Shards + Crystals, the Crystal slot # will change, often with pigments. So by using ItemName it will always gather it regardless of slot #. Now in my leveling profiles, i use strictly Slot, since its highly unlikely players will have it unlocked. Also using <Slot> will work for CN players unlike using ItemName, as far as I am aware, hence why I try to keep everything to ID's over phrases. This is also the reason why my stealth code chunks, work off of Aura ID's and Stealth ID's rather then the English names which I see everyone else do :)

I put the botany 1-50 to the buddy folder i just extracted, aswell as created a Custom folder with YesTalkTo/In files, when i load a custom profile it seems to be load correctly, but as soon as i start the bot the ff14bot is force closing... did i anything wrong?

Profiles should go in the "Profiles" folder and inside there you create a "Custom" folder and put in the custom tags and then load up the bot. That's all I can really suggest without having a log to look at, and yes even if the bot doesn't fully start a log is still generated.
 
Thanks, got it.. but when i use the 1-50 questing profile, my character is running to a wall.. when i try to go another way, it stills runs to the location and is running to a wall.

When i use 15-50 main quest profile i need to do duty's right? Is there a another way to grind/farm/quest to 50? from 1-15 it just runs flawless, but as soon as i hit lv 16 i'm just getting problems.
 
Partly correct, using <Slot> over <ItemName> should be used almost every that it can be, I havent tested but the reason why I havent tested, is because on the nodes that have Shards + Crystals, the Crystal slot # will change, often with pigments. So by using ItemName it will always gather it regardless of slot #. Now in my leveling profiles, i use strictly Slot, since its highly unlikely players will have it unlocked. Also using <Slot> will work for CN players unlike using ItemName, as far as I am aware, hence why I try to keep everything to ID's over phrases. This is also the reason why my stealth code chunks, work off of Aura ID's and Stealth ID's rather then the English names which I see everyone else do :)

Right, I actually forgot about that part. Of course you could define variables for the item names for the different locales, but that's taking it a bit too far and most likely will end up very messy :D If you could add additional if statements within the Gather tag, you could probably check the GatheringWindow to see if it contains item with id X and then get slot Y. Which would also allow for possibly setting GatheringSkills based on the objects available from the GatheringWindow. Ah, the possibilities.
 
Right, I actually forgot about that part. Of course you could define variables for the item names for the different locales, but that's taking it a bit too far and most likely will end up very messy :D If you could add additional if statements within the Gather tag, you could probably check the GatheringWindow to see if it contains item with id X and then get slot Y. Which would also allow for possibly setting GatheringSkills based on the objects available from the GatheringWindow. Ah, the possibilities.

Is that possible, yes, is it within a basic Order Bot profile, I don't think so. For now it works, the Crystal farm profiles have the least amount of downloads anyways so its not on my top list of things to get done or look into.

@Kunkr sounds like you got the wrong thread, this isn't the DoM/W level 1-50 this is only for gathering currently.
 
When using the Mining - Crystal Farming profile it keeps switching to my PLD than it will go the place to farm Fire Shards/Crystals in Eastern Than. Once it gets to the correct location it doesn't change back to Miner, if I try to change it to miner myself it switches back to PLD. I have to stop the bot and start mining before I start the bot again.

Here is a exert from the log file, it had a lot of different things in it for some reason.

View attachment 176466

Also, I started the bot as Miner, it changed me to PLD on it's own.
 
When using the Mining - Crystal Farming profile it keeps switching to my PLD than it will go the place to farm Fire Shards/Crystals in Eastern Than. Once it gets to the correct location it doesn't change back to Miner, if I try to change it to miner myself it switches back to PLD. I have to stop the bot and start mining before I start the bot again.

Here is a exert from the log file, it had a lot of different things in it for some reason.

View attachment 176466

Also, I started the bot as Miner, it changed me to PLD on it's own.

Make sure you edit the profile where it says /gs change 11 or something like that. Change the number to what gear set your miner is.

Say my miner gear set was number 2. In the profile, there should be a line that says /gs change 2. If you use Notepad++ it'll be colored orange I think.
 
Make sure you edit the profile where it says /gs change 11 or something like that. Change the number to what gear set your miner is.

Say my miner gear set was number 2. In the profile, there should be a line that says /gs change 2. If you use Notepad++ it'll be colored orange I think.

Thank you for the help. I changed it, it was one of the last lines in the code. Now it works perfectly.
 
So I downloaded this and tried it and the bot took me to middle la Noscea and ran for a bit then just stopped without reason and everytime I try to help it run it runs back...
 
Hey, I just wanna say first, great profiles mate.

I've just started having a problem the last few hours to go.

Bot was running the 1-50 mining guide fine, then I turned it off for a bit at level 28.

When I turned it back on it took me back to the copper zones and wont go anywhere else, I have tried restarting multiple times.

Have I managed to balls something up?

Cheers

Log attached:

View attachment 6796 2015-04-25 14.24.txt

If you need I have one that ran like this for 5 or so hours
 
Last edited:
Not at computer, but where you working on a quest section of the profile? If you stop it during certain points it can mess up. Ill take a look at the profile around level 28 and see if I can spot any issues, didn't see much of anything in the quick browse of your log.
 
All the profiles are very well made, thanks for you work!

Imho, you could implement the autorelease in case of death.
I think there isn't, right?
 
Back
Top