• Visit Rebornbuddy
  • Mining Profile (With Platinum Ore)

    Discussion in 'Mining-Botany Profiles' started by toofast999, Oct 29, 2014.

    1. mphil355

      mphil355 New Member

      Joined:
      Aug 9, 2014
      Messages:
      22
      Likes Received:
      0
      Trophy Points:
      0
      To answer a few questions:

      1) OrderBot currently doesnt handle turning stealth on and off at particular areas. The way I (and others) who use it are simply by manually turning it on and off when your character approaches a danger zone.

      2) It is definitely possible to mine other nodes while waiting for an unspoiled node to pop, the way I have seen it done is:
      Code:
       
      <!--Darksteel Ore -->
      <If Condition="IsTimeBetween(1,3)">
      	<TeleportTo Name="Camp Dragonhead" AetheryteId="23" />	
      	<Gather Loops="1">
                     <GatherObject>Unspoiled Mineral Deposit</GatherObject>
                     <HotSpots>
                           <HotSpot Radius="95" XYZ="309.7161,305.0083,-62.78537" />
                     </HotSpots>
                      <Slot>2</Slot> <!--Darksteel Ore -->
      	         <GatheringSkillOrder>
      			 <GatheringSkill SpellName="King's Yield II" TimesToCast="1" />
      			 <GatheringSkill SpellName="Deep Vigor" TimesToCast="1" />
      		 </GatheringSkillOrder>
            </Gather>
      </If>
      
      the way that this works, is it checks Eorzea time to see if it is between the two given values, if it is then it proceeds like most other profiles you can easily find
      times are from 0-23 (0 = midnight, 1 = 1am, . . . 23 = 11pm)

      simply add more If conditionals with the times that you want, and insert your <Gather> tag segment and you are good to go
      If you dont want to use any abilities just remove the <GatheringSkill> out of the <GatheringSkillOrder> tag like so:

      Code:
      
      <If Condition="IsTimeBetween(4,13)">
                  <If Condition="not IsOnMap(152)">
      	        <TeleportTo Name="The Hawthorne Hut" AetheryteId="4" />
      	    </If>
      	    <Gather while="IsTimeBetween(4,13)">
                      <GatherObject>Rocky Outcrop</GatherObject>
                      <HotSpots>
              	    <HotSpot Radius="90" XYZ="-164.3448, -0.488205, 163.7332" />
                      </HotSpots>
                      <ItemNames>
                          <ItemName>Grade 2 Shroud Topsoil</ItemName>
                          <ItemName>Wind Crystal</ItemName>
                          <ItemName>Wind Shard</ItemName>
                      </ItemNames>
      	        <GatheringSkillOrder>
      	        </GatheringSkillOrder>
            	    </Gather>
      </If>
      
      IIRC the <GatheringSkillOrder> tags have to be present, but they can be empty

      This code segment also demonstrates another question that was asked about gathering multiple items.
      Using the <ItemName> tags you can insert as many <ItemName> as you desire, it gathers in order from the top down*.

      **IT DOES NOT NECESSARILY GATHER EVERY ITEM ON THE LIST**
      This example uses the node where Grade 2 Shroud Topsoil can be found, and as you know it is a Hidden item.
      If it is present, this code will gather it, and then proceed to gather the next available item on the list, in this case being a Wind Crystal.
      The Wind Shard listed will only be gathered if it runs into a node where the Wind Crystal is not present.

      So what is the difference between <ItemName> and <Slot> tags in the two examples??
      <Slot> tags will always mine the exact same slot every time, regardless of if there is an item there or not (if you dont know what slot to mine, this is a problem!)
      this makes <Slot> tags perfect for unspoiled nodes, because if you know the slot you need, you dont have to waste GP uncovering all of them.
      If you want to use the <Slot> tag for normal nodes as well, nothing is stopping you... but you wont be able to harvest any hidden items.



      I hope this helps some people
       
    2. cameronss816

      cameronss816 New Member

      Joined:
      Jun 29, 2014
      Messages:
      52
      Likes Received:
      0
      Trophy Points:
      0
      Is there any way with the Grade 3 Thal Soil to do Water Clusters too? Just typing in <Slot>5</Slot> below the slot 6 isn't working.
       
    3. kagamihiiragi17

      kagamihiiragi17 Community Developer

      Joined:
      Jun 24, 2014
      Messages:
      873
      Likes Received:
      25
      Trophy Points:
      0
      You can only have one slot tag. To mine more than one thing use the ItemNames tag.
       
    4. cameronss816

      cameronss816 New Member

      Joined:
      Jun 29, 2014
      Messages:
      52
      Likes Received:
      0
      Trophy Points:
      0
      QQ, oh well. I'll take the 25K for a soil over the clusters :p
       
    5. Haseo

      Haseo New Member

      Joined:
      Aug 7, 2014
      Messages:
      5
      Likes Received:
      0
      Trophy Points:
      0
      Is anyone else having a nice teleport repetition in Coerthas with this?
       
    6. toofast999

      toofast999 New Member

      Joined:
      May 18, 2013
      Messages:
      20
      Likes Received:
      1
      Trophy Points:
      3
      hmm, this started happening ever since the new patch.



      Edit - Yeah now it doesnt even bother tping to Camp Dragonhead, I think the aetheryte / not on map ID has been changed. Can mastahg enlighten us on any information regarding this?
       
      Last edited: Nov 7, 2014
    7. cameronss816

      cameronss816 New Member

      Joined:
      Jun 29, 2014
      Messages:
      52
      Likes Received:
      0
      Trophy Points:
      0

      lmao, yupp, I had the same issue... Was working fine for two hours while I was at home. Left it running while at work... 200K spent on Teleports... hahaha.
       
    8. mastahg

      mastahg Administrator Staff Member

      Joined:
      Feb 27, 2011
      Messages:
      5,229
      Likes Received:
      364
      Trophy Points:
      83

      Post a log.
       
    9. cameronss816

      cameronss816 New Member

      Joined:
      Jun 29, 2014
      Messages:
      52
      Likes Received:
      0
      Trophy Points:
      0

      Literally teleports to dragonhead 100+ times.
       

      Attached Files:

    10. cameronss816

      cameronss816 New Member

      Joined:
      Jun 29, 2014
      Messages:
      52
      Likes Received:
      0
      Trophy Points:
      0
      Did the update, saw the fix, now it's not doing anything >_>;
       
    11. cameronss816

      cameronss816 New Member

      Joined:
      Jun 29, 2014
      Messages:
      52
      Likes Received:
      0
      Trophy Points:
      0
      Did the update mean to take out Dragon head or do I need to modify the Aethyrite ID?
       
    12. mastahg

      mastahg Administrator Staff Member

      Joined:
      Feb 27, 2011
      Messages:
      5,229
      Likes Received:
      364
      Trophy Points:
      83
      Working for me. Post a log
       
    13. cameronss816

      cameronss816 New Member

      Joined:
      Jun 29, 2014
      Messages:
      52
      Likes Received:
      0
      Trophy Points:
      0
      Let me rephrase that, it will do all but Dragonhead, so did we update the ID?
       
    14. mastahg

      mastahg Administrator Staff Member

      Joined:
      Feb 27, 2011
      Messages:
      5,229
      Likes Received:
      364
      Trophy Points:
      83
      Let me not rephrase. Post a log of it not properly teleporting to dragonhead.
       
    15. cameronss816

      cameronss816 New Member

      Joined:
      Jun 29, 2014
      Messages:
      52
      Likes Received:
      0
      Trophy Points:
      0
      Nevermind, rebooted RB and it works perfectly fine. Was watching the whole script. It skipped over it without reboot, probably because I just changed the script to get both Thalnan Soil and Water Clusters. Sorry, thanks for the quick and efficient update Mastahg
       
    16. kinmen

      kinmen New Member

      Joined:
      Oct 23, 2014
      Messages:
      34
      Likes Received:
      0
      Trophy Points:
      0
      If I need manually that mean I can't afk then why should I use bot?
      Other thing is when I mining and got mob hit, sometimes it won't do anything until dead.(that's mean you show other player I'm bot...orz)

      thanks a lot,now I know how to use the profile to mining what I want.
      But when I set itemname in front the slot , itemname seems not work only slot?

      Hope stealth can be use in orderbot.
       
    17. kagamihiiragi17

      kagamihiiragi17 Community Developer

      Joined:
      Jun 24, 2014
      Messages:
      873
      Likes Received:
      25
      Trophy Points:
      0
    18. kinmen

      kinmen New Member

      Joined:
      Oct 23, 2014
      Messages:
      34
      Likes Received:
      0
      Trophy Points:
      0
      could you teach me how to use it , im end user not developer. :eek:
       
    19. kagamihiiragi17

      kagamihiiragi17 Community Developer

      Joined:
      Jun 24, 2014
      Messages:
      873
      Likes Received:
      25
      Trophy Points:
      0
      Put the .cs file in your Plugins folder. Tag Usage:

      Turn Stealth On:
      Code:
      <Stealth Activate="True" />
      Turn Stealth Off:
      Code:
      <Stealth Activate="False" />
      That tag worked last time I checked it, but I'll make no promises that it still works. If it doesn't work it shouldn't be hard to fix so it would be a good learning experience for someone who is less experienced.
       
    20. kinmen

      kinmen New Member

      Joined:
      Oct 23, 2014
      Messages:
      34
      Likes Received:
      0
      Trophy Points:
      0
      seens not work , or what i miss something?
      Code:
      	<If Condition="IsTimeBetween(13,14)">
                  <If Condition="not IsOnMap(154)">
      	        <TeleportTo Name="Revenant's Toll" AetheryteId="24" />
      	    </If>
      	    </If>
               <If Condition="IsTimeBetween(13,14)">
      		<TeleportTo Name="Revenant's Toll" AetheryteId="24"/>
      	      <Gather Loops="1">
                   	<GatherObject>Unspoiled Rocky Outcrop</GatherObject>
               	<HotSpots>
      	  	        <HotSpot Radius="95" XYZ="297.7793, 7.004344, -589.2265"/>
      			<HotSpot Radius="95" XYZ="343.6565, -7.780937, -451.2857"/>
               	</HotSpots>
      <Stealth Activate="True" />
               	<Slot>1</Slot>
      		<GatheringSkillOrder>
      			<GatheringSkill SpellName="King's Yield II" TimesToCast="1" />
      			<GatheringSkill SpellName="Sharp Vision" TimesToCast="1" />
      			<GatheringSkill SpellName="Deep Vigor" TimesToCast="1" />
      		</GatheringSkillOrder>
            	    </Gather>
      <Stealth Activate="False" />
      			<MoveTo XYZ="478.9291, -2.545939, -496.3447"/>
      			<WaitWhile Condition ="IsTimeBetween(13,14)" />
      	    </If>
       

      Attached Files:

      Last edited: Nov 11, 2014

    Share This Page