• Visit Rebornbuddy
  • Order Bot Profiles (With Guide)

    Discussion in 'Rebornbuddy Profiles' started by kagamihiiragi17, Jul 2, 2014.

    1. kagamihiiragi17

      kagamihiiragi17 Community Developer

      Joined:
      Jun 24, 2014
      Messages:
      873
      Likes Received:
      25
      Trophy Points:
      0
      Now that order bot has been implemented, it's high time we start using that for our profiles instead. There's no way to automatically generate these profiles You can now use OrderUp to generate profiles, but here's an example profile to start from for basic understanding or if you want to create profiles by hand. It will level your character from 1-15 in the Central Shroud by grinding 6 different areas, all without needing to switch profiles. (which is way better than the old grinding profile system!)

      View attachment OrderBot_CentralShroud_Levels1-15.xml

      Alright, Order Bot profiles are quite different from the old Grinding Bot profiles, so let's break this profile down for ease of understanding and create an Order Bot profile to level us from level 1 to level 3. First off, everything is wrapped in a <Profile> tag, and then you need a <Name> tag with the name of your profile and a <KillRadius> tag as well. That's essentially all the setup that's required. So what we have so far:

      Code:
      <Profile>
         <Name>Central Shroud - Level 1 to 3</Name>
         <KillRadius>50</KillRadius>
      </Profile>
      After that, it's time to add GrindAreas. These are the locations you will kill enemies, what enemies you kill, and what levels they will be. First off, be sure to give your grind area a specific and unique name, because that name will be important later. Next, you'll need a position for the grind area to be based around (a hotspot). In order to get your player's current location, you can put the following command into the Reborn Console and it will output your location in the log.

      Code:
      Logging.Write(Core.Player.Location);
      GrindAreas really only need one hotspot, I would assume they support more than one but I haven't tried it. Next, you need the mobs that you want to grind on. These mobs are wrapped in a <TargetMobs> tag, and then each mob has it's own individual <TargetMob> tag. You can see this in the example. After you've specified each target mob there are only two tags left, which are <MinLevel> and <MaxLevel>. They're pretty self-explanatory, MinLevel is the minimum level of the mobs that you want to fight (not your own level!) and MaxLevel is the maximum level mob you want to grind on. Put all these components together, and you have a complete GrindArea, as shown here:

      Code:
            <GrindArea name="beginning_area">
               <Hotspots>
                  <Hotspot Radius="80" X="75.94034" Y="9.467222" Z="-235.9773" name="beginning_area" />
               </Hotspots>
               <TargetMobs>
                  <TargetMob name="Little Ladybug" />
                  <TargetMob name="Ground Squirrel" />
               </TargetMobs>
               <MinLevel>0</MinLevel>
               <MaxLevel>3</MaxLevel>
            </GrindArea>
      Lastly, the Order Bot requires, well, orders. This is what makes the Order Bot so superior, you can specify conditions for the bot to grind certain areas under. For example, in the GrindArea we created above, the monsters only go up to level 3, so it would make sense for us to grind that area while we are less than level 3 (AKA until level 3, or only levels 1 and 2). Orders are specified within the <Order> wrapping, and then the tag you use depends on what orders you are giving the bot. Currently only grinding is supported so we will use a <Grind> tag and specify our conditions within that. Here is where the name you assigned your GrindArea earlier comes back into play, you need to specify the name of the GrindArea you want to use in grindRef, as you can see here:

      Code:
      <Order>
          <Grind grindRef="beginning_area" while="Core.Player.ClassLevel &lt; 3" />
      </Order>
      In this code the &lt; is code for the less than sign (<), so while Core.Player.ClassLevel is less than 3, the bot will grind the area and mobs specified in the GrindArea named "beginning_area". Put everything we've just done together and you get the following profile:

      Code:
      <Profile>
         <Name>Central Shroud - Level 1 to 3</Name>
         <KillRadius>50</KillRadius>
         <GrindAreas>
            <GrindArea name="beginning_area">
               <Hotspots>
                  <Hotspot Radius="80" X="75.94034" Y="9.467222" Z="-235.9773" name="beginning_area" />
               </Hotspots>
               <TargetMobs>
                  <TargetMob name="Little Ladybug" />
                  <TargetMob name="Ground Squirrel" />
               </TargetMobs>
               <MinLevel>0</MinLevel>
               <MaxLevel>3</MaxLevel>
            </GrindArea>
         </GrindAreas>
         <Order>
            <Grind grindRef="beginning_area" while="Core.Player.ClassLevel &lt; 3" />
         </Order>
      </Profile>
      And now you've created your first profile for the Order Bot! If you want to expand the profile it's very easy, just add another GrindArea, add another Order (with new conditions!) and the Order Bot will automatically move from GrindArea to GrindArea as it fails to satisfy the conditions for the easier GrindAreas and slowly moves to harder ones. If you have any questions or if I missed anything major, please just reply and I'll try to help as best I can.
       
      Last edited: Jul 3, 2014
    2. Wheredidigo

      Wheredidigo Community Developer

      Joined:
      Dec 15, 2013
      Messages:
      417
      Likes Received:
      8
      Trophy Points:
      18
      I'd like to just say thank you for the explanation!

      Do you know if the OrderBot has access to teleport? I could see myself making some full 1-50 Grind/Fate Profiles if I could automatically teleport to the correct zone as needed.

      Also, what other Orders are available other than just Grind? Is it possible to do Fate farming while they're up, but then switch back to grinding when there aren't any Fates up?

      Edit: One other question, how does having multiple Hotspots work? I know it would be overkill with the Hotspots....but could I turn an old Grinding Profile into an OrderBot profile by just changing all of the nodes I had in that profile into their own Hotspots in an OrderBot profile and then just give them each a radius of like 10 or something small?
       
      Last edited: Jul 3, 2014
    3. Wheredidigo

      Wheredidigo Community Developer

      Joined:
      Dec 15, 2013
      Messages:
      417
      Likes Received:
      8
      Trophy Points:
      18
      What I'm really looking for is if this would be a valid OrderBot Profile:

      Basically, what I did was take the 2 Western La Noscea profiles from this post (https://www.thebuddyforum.com/rebornbuddy-forum/rebornbuddy-profiles/154137-leveling-profiles.html) and combine them into this 1 OrderBot Profile.

      Do you see a problem with doing this?

      Code:
      <Profile>
      	<Name>Western La Noscea - Level 15 to 21</Name>
      	<KillRadius>80</KillRadius>
      	<GrindAreas>
      		<GrindArea name="lvls_15_18">
      			<Hotspots>
      				<Hotspot Radius="4" X="241.226669" Y="116.811066" Z="-14.0100651" name="lvls_15_18" />
      				<Hotspot Radius="4" X="241.091125" Y="112.58094" Z="-13.4924631" name="lvls_15_18" />
      				<Hotspot Radius="4" X="240.918716" Y="107.97728" Z="-13.0366049" name="lvls_15_18" />
      				<Hotspot Radius="4" X="242.126434" Y="103.905769" Z="-12.5442076" name="lvls_15_18" />
      				<Hotspot Radius="4" X="246.2699" Y="102.012825" Z="-12.3076067" name="lvls_15_18" />
      				<Hotspot Radius="4" X="250.736847" Y="100.986092" Z="-12.1223507" name="lvls_15_18" />
      				<Hotspot Radius="4" X="255.170868" Y="99.96692" Z="-11.8266926" name="lvls_15_18" />
      				<Hotspot Radius="4" X="259.6249" Y="98.74425" Z="-11.44534" name="lvls_15_18" />
      				<Hotspot Radius="4" X="264.026855" Y="97.52776" Z="-10.8122377" name="lvls_15_18" />
      				<Hotspot Radius="4" X="268.473328" Y="98.06634" Z="-9.946195" name="lvls_15_18" />
      				<Hotspot Radius="4" X="271.114044" Y="101.558273" Z="-9.806956" name="lvls_15_18" />
      				<Hotspot Radius="4" X="272.851471" Y="105.193504" Z="-10.0247641" name="lvls_15_18" />
      				<Hotspot Radius="4" X="274.205963" Y="109.14518" Z="-10.5521545" name="lvls_15_18" />
      				<Hotspot Radius="4" X="272.724823" Y="112.811409" Z="-11.433548" name="lvls_15_18" />
      				<Hotspot Radius="4" X="270.055542" Y="116.081085" Z="-12.3748856" name="lvls_15_18" />
      				<Hotspot Radius="4" X="268.4918" Y="119.75605" Z="-12.9380207" name="lvls_15_18" />
      				<Hotspot Radius="4" X="267.032776" Y="124.09964" Z="-13.575983" name="lvls_15_18" />
      				<Hotspot Radius="4" X="266.015747" Y="128.525665" Z="-14.0954113" name="lvls_15_18" />
      				<Hotspot Radius="4" X="265.114868" Y="132.679382" Z="-14.6355944" name="lvls_15_18" />
      				<Hotspot Radius="4" X="264.558655" Y="136.614471" Z="-15.19688" name="lvls_15_18" />
      				<Hotspot Radius="4" X="264.0049" Y="141.1401" Z="-15.8476219" name="lvls_15_18" />
      				<Hotspot Radius="4" X="263.449982" Y="145.67659" Z="-16.1949234" name="lvls_15_18" />
      				<Hotspot Radius="4" X="262.8934" Y="150.226959" Z="-16.4879456" name="lvls_15_18" />
      				<Hotspot Radius="4" X="262.2502" Y="154.749023" Z="-16.8561916" name="lvls_15_18" />
      				<Hotspot Radius="4" X="259.1001" Y="157.981155" Z="-17.4694157" name="lvls_15_18" />
      				<Hotspot Radius="4" X="254.987015" Y="159.8909" Z="-17.5123253" name="lvls_15_18" />
      				<Hotspot Radius="4" X="250.545837" Y="161.162811" Z="-17.611824" name="lvls_15_18" />
      				<Hotspot Radius="4" X="246.07048" Y="160.856537" Z="-17.7604084" name="lvls_15_18" />
      				<Hotspot Radius="4" X="241.655884" Y="159.564331" Z="-17.9197712" name="lvls_15_18" />
      				<Hotspot Radius="4" X="237.4849" Y="157.796356" Z="-17.81067" name="lvls_15_18" />
      				<Hotspot Radius="4" X="233.483551" Y="155.66658" Z="-17.9041786" name="lvls_15_18" />
      				<Hotspot Radius="4" X="229.256851" Y="153.75296" Z="-18.0746479" name="lvls_15_18" />
      				<Hotspot Radius="4" X="225.110352" Y="151.83107" Z="-18.4093723" name="lvls_15_18" />
      				<Hotspot Radius="4" X="220.983047" Y="149.651718" Z="-18.787426" name="lvls_15_18" />
      				<Hotspot Radius="4" X="218.574738" Y="146.083" Z="-18.81267" name="lvls_15_18" />
      				<Hotspot Radius="4" X="219.7682" Y="141.754929" Z="-18.384613" name="lvls_15_18" />
      				<Hotspot Radius="4" X="222.611511" Y="138.117691" Z="-17.9612789" name="lvls_15_18" />
      				<Hotspot Radius="4" X="225.641464" Y="134.618134" Z="-17.3965664" name="lvls_15_18" />
      				<Hotspot Radius="4" X="228.882767" Y="131.535065" Z="-16.7335587" name="lvls_15_18" />
      				<Hotspot Radius="4" X="231.785324" Y="128.810715" Z="-16.0045261" name="lvls_15_18" />
      				<Hotspot Radius="4" X="235.13588" Y="125.604065" Z="-15.3836975" name="lvls_15_18" />
      				<Hotspot Radius="4" X="237.835648" Y="121.931564" Z="-14.7569008" name="lvls_15_18" />
      				<Hotspot Radius="4" X="236.790359" Y="112.778465" Z="-13.8203917" name="lvls_15_18" />
      				<Hotspot Radius="4" X="232.808487" Y="111.356" Z="-14.15314" name="lvls_15_18" />
      				<Hotspot Radius="4" X="228.7641" Y="109.19693" Z="-14.5740948" name="lvls_15_18" />
      				<Hotspot Radius="4" X="224.7908" Y="106.860229" Z="-14.8339787" name="lvls_15_18" />
      				<Hotspot Radius="4" X="221.249908" Y="104.02137" Z="-14.9758778" name="lvls_15_18" />
      				<Hotspot Radius="4" X="217.871536" Y="100.845909" Z="-14.9584846" name="lvls_15_18" />
      				<Hotspot Radius="4" X="216.019165" Y="96.7687149" Z="-14.6281033" name="lvls_15_18" />
      				<Hotspot Radius="4" X="211.652954" Y="96.22477" Z="-15.050046" name="lvls_15_18" />
      				<Hotspot Radius="4" X="207.687759" Y="96.1270752" Z="-15.5817661" name="lvls_15_18" />
      				<Hotspot Radius="4" X="203.599869" Y="96.73985" Z="-15.6194582" name="lvls_15_18" />
      				<Hotspot Radius="4" X="200.384766" Y="99.47386" Z="-15.6597586" name="lvls_15_18" />
      				<Hotspot Radius="4" X="199.559952" Y="103.892441" Z="-15.8795433" name="lvls_15_18" />
      				<Hotspot Radius="4" X="201.66925" Y="107.84211" Z="-16.02173" name="lvls_15_18" />
      				<Hotspot Radius="4" X="204.823" Y="111.153481" Z="-16.5124149" name="lvls_15_18" />
      				<Hotspot Radius="4" X="208.393539" Y="114.008179" Z="-16.9169025" name="lvls_15_18" />
      				<Hotspot Radius="4" X="212.431091" Y="116.19841" Z="-17.03593" name="lvls_15_18" />
      				<Hotspot Radius="4" X="216.066025" Y="117.882278" Z="-16.8475914" name="lvls_15_18" />
      				<Hotspot Radius="4" X="220.126419" Y="119.903053" Z="-16.7942867" name="lvls_15_18" />
      				<Hotspot Radius="4" X="223.8951" Y="122.495415" Z="-16.6658726" name="lvls_15_18" />
      				<Hotspot Radius="4" X="227.558853" Y="125.2538" Z="-16.4182587" name="lvls_15_18" />
      				<Hotspot Radius="4" X="218.7068" Y="136.244308" Z="-18.15803" name="lvls_15_18" />
      				<Hotspot Radius="4" X="214.716614" Y="136.804016" Z="-18.3347225" name="lvls_15_18" />
      				<Hotspot Radius="4" X="210.2163" Y="137.3905" Z="-18.1931171" name="lvls_15_18" />
      				<Hotspot Radius="4" X="205.684067" Y="136.71907" Z="-17.5404415" name="lvls_15_18" />
      				<Hotspot Radius="4" X="202.070068" Y="135.143616" Z="-16.8470783" name="lvls_15_18" />
      				<Hotspot Radius="4" X="197.807709" Y="133.566132" Z="-15.9660749" name="lvls_15_18" />
      				<Hotspot Radius="4" X="193.451492" Y="132.007233" Z="-14.9969254" name="lvls_15_18" />
      				<Hotspot Radius="4" X="189.002518" Y="131.234619" Z="-14.2574492" name="lvls_15_18" />
      				<Hotspot Radius="4" X="184.7244" Y="129.525742" Z="-13.6215887" name="lvls_15_18" />
      				<Hotspot Radius="4" X="180.459045" Y="128.852737" Z="-13.1022263" name="lvls_15_18" />
      				<Hotspot Radius="4" X="176.339325" Y="127.017525" Z="-12.4953861" name="lvls_15_18" />
      				<Hotspot Radius="4" X="172.325043" Y="124.619255" Z="-12.0856352" name="lvls_15_18" />
      				<Hotspot Radius="4" X="168.3855" Y="122.265442" Z="-11.7648821" name="lvls_15_18" />
      				<Hotspot Radius="4" X="164.6144" Y="119.656494" Z="-11.4232912" name="lvls_15_18" />
      				<Hotspot Radius="4" X="161.055252" Y="116.870216" Z="-11.2845316" name="lvls_15_18" />
      				<Hotspot Radius="4" X="157.454575" Y="114.051422" Z="-11.13743" name="lvls_15_18" />
      				<Hotspot Radius="4" X="154.173141" Y="110.794" Z="-11.2897606" name="lvls_15_18" />
      				<Hotspot Radius="4" X="151.6533" Y="107.046577" Z="-11.5199528" name="lvls_15_18" />
      				<Hotspot Radius="4" X="150.829987" Y="102.612572" Z="-12.1149292" name="lvls_15_18" />
      				<Hotspot Radius="4" X="153.450974" Y="98.93078" Z="-12.6818237" name="lvls_15_18" />
      				<Hotspot Radius="4" X="157.4334" Y="96.66394" Z="-13.0055218" name="lvls_15_18" />
      				<Hotspot Radius="4" X="161.29718" Y="94.23505" Z="-13.3291845" name="lvls_15_18" />
      				<Hotspot Radius="4" X="164.434662" Y="90.94431" Z="-13.69674" name="lvls_15_18" />
      				<Hotspot Radius="4" X="167.3476" Y="87.33368" Z="-14.0924339" name="lvls_15_18" />
      				<Hotspot Radius="4" X="169.5606" Y="83.40995" Z="-14.3123" name="lvls_15_18" />
      				<Hotspot Radius="4" X="171.013412" Y="79.1080856" Z="-14.3364286" name="lvls_15_18" />
      				<Hotspot Radius="4" X="174.885757" Y="80.1830444" Z="-14.0306892" name="lvls_15_18" />
      				<Hotspot Radius="4" X="178.439209" Y="82.57025" Z="-13.9722118" name="lvls_15_18" />
      				<Hotspot Radius="4" X="182.02771" Y="85.3456345" Z="-14.1053982" name="lvls_15_18" />
      				<Hotspot Radius="4" X="185.579056" Y="88.32295" Z="-14.4193029" name="lvls_15_18" />
      				<Hotspot Radius="4" X="189.0234" Y="91.210556" Z="-14.5855761" name="lvls_15_18" />
      				<Hotspot Radius="4" X="192.604813" Y="94.21305" Z="-14.883502" name="lvls_15_18" />
      				<Hotspot Radius="4" X="196.245056" Y="96.86816" Z="-15.2550983" name="lvls_15_18" />
      				<Hotspot Radius="4" X="201.711609" Y="93.0198441" Z="-15.1927338" name="lvls_15_18" />
      				<Hotspot Radius="4" X="205.7091" Y="91.08656" Z="-14.8572655" name="lvls_15_18" />
      				<Hotspot Radius="4" X="209.947556" Y="92.31189" Z="-14.6652708" name="lvls_15_18" />
      				<Hotspot Radius="4" X="221.005615" Y="109.044037" Z="-15.5764179" name="lvls_15_18" />
      				<Hotspot Radius="4" X="218.968155" Y="112.526314" Z="-16.1487484" name="lvls_15_18" />
      				<Hotspot Radius="4" X="211.259613" Y="120.382355" Z="-17.2363338" name="lvls_15_18" />
      				<Hotspot Radius="4" X="206.994217" Y="122.177628" Z="-16.9184875" name="lvls_15_18" />
      				<Hotspot Radius="4" X="202.60788" Y="122.968781" Z="-16.2463932" name="lvls_15_18" />
      				<Hotspot Radius="4" X="198.66008" Y="123.972214" Z="-15.4178276" name="lvls_15_18" />
      				<Hotspot Radius="4" X="194.4084" Y="125.516937" Z="-14.7468424" name="lvls_15_18" />
      				<Hotspot Radius="4" X="190.120361" Y="126.865494" Z="-14.2693434" name="lvls_15_18" />
      				<Hotspot Radius="4" X="192.550278" Y="121.604088" Z="-14.5827217" name="lvls_15_18" />
      				<Hotspot Radius="4" X="193.333725" Y="117.551392" Z="-14.7843132" name="lvls_15_18" />
      				<Hotspot Radius="4" X="193.108261" Y="113.39109" Z="-14.5885639" name="lvls_15_18" />
      				<Hotspot Radius="4" X="191.62558" Y="109.208809" Z="-14.8992348" name="lvls_15_18" />
      				<Hotspot Radius="4" X="190.883362" Y="104.97261" Z="-15.2916813" name="lvls_15_18" />
      				<Hotspot Radius="4" X="189.035614" Y="100.77253" Z="-15.0235357" name="lvls_15_18" />
      				<Hotspot Radius="4" X="193.141632" Y="100.643852" Z="-15.3563309" name="lvls_15_18" />
      				<Hotspot Radius="4" X="197.854355" Y="109.265533" Z="-15.6507273" name="lvls_15_18" />
      				<Hotspot Radius="4" X="198.368668" Y="113.784065" Z="-15.4363785" name="lvls_15_18" />
      				<Hotspot Radius="4" X="200.101257" Y="118.009575" Z="-15.7342844" name="lvls_15_18" />
      				<Hotspot Radius="4" X="206.655014" Y="117.928413" Z="-16.74657" name="lvls_15_18" />
      				<Hotspot Radius="4" X="207.276718" Y="107.878975" Z="-16.7219849" name="lvls_15_18" />
      				<Hotspot Radius="4" X="208.283829" Y="103.421188" Z="-16.22512" name="lvls_15_18" />
      				<Hotspot Radius="4" X="212.0897" Y="105.3987" Z="-15.9390574" name="lvls_15_18" />
      				<Hotspot Radius="4" X="216.292526" Y="107.313484" Z="-15.837513" name="lvls_15_18" />
      				<Hotspot Radius="4" X="214.141388" Y="110.778122" Z="-16.39924" name="lvls_15_18" />
      				<Hotspot Radius="4" X="222.200882" Y="116.099762" Z="-16.2560425" name="lvls_15_18" />
      				<Hotspot Radius="4" X="226.3411" Y="114.730621" Z="-15.6151905" name="lvls_15_18" />
      				<Hotspot Radius="4" X="231.532532" Y="115.487755" Z="-14.7657423" name="lvls_15_18" />
      				<Hotspot Radius="4" X="232.344528" Y="119.681862" Z="-14.6888208" name="lvls_15_18" />
      				<Hotspot Radius="4" X="226.057938" Y="119.03112" Z="-16.10055" name="lvls_15_18" />
      				<Hotspot Radius="4" X="236.464645" Y="108.6703" Z="-13.439806" name="lvls_15_18" />
      				<Hotspot Radius="4" X="235.624954" Y="104.1717" Z="-12.9627771" name="lvls_15_18" />
      				<Hotspot Radius="4" X="236.440811" Y="99.71316" Z="-12.2847023" name="lvls_15_18" />
      				<Hotspot Radius="4" X="238.934418" Y="95.81105" Z="-11.7544594" name="lvls_15_18" />
      				<Hotspot Radius="4" X="242.946808" Y="93.8915" Z="-11.4545126" name="lvls_15_18" />
      				<Hotspot Radius="4" X="247.510864" Y="94.23375" Z="-11.493329" name="lvls_15_18" />
      				<Hotspot Radius="4" X="252.109512" Y="94.53463" Z="-11.4160824" name="lvls_15_18" />
      				<Hotspot Radius="4" X="256.6763" Y="94.63208" Z="-11.2054" name="lvls_15_18" />
      				<Hotspot Radius="4" X="243.131317" Y="99.3037338" Z="-12.01459" name="lvls_15_18" />
      				<Hotspot Radius="4" X="232.153961" Y="101.252747" Z="-12.9266253" name="lvls_15_18" />
      				<Hotspot Radius="4" X="227.625961" Y="102.056671" Z="-13.8754492" name="lvls_15_18" />
      			</Hotspots>
      			<TargetMobs>
      				<TargetMob name="Hedgemole" />
      				<TargetMob name="Dusk Bat" />
      				<TargetMob name="Rothlyt Pelican" />
      			</TargetMobs>
      			<MinLevel>0</MinLevel>
      			<MaxLevel>50</MaxLevel>
      		</GrindArea>
      		<GrindArea name="lvls_19_21">
      			<Hotspots>
      				<Hotspot Radius="4" X="68.9336" Y="-67.43347" Z="-2.763607" name="lvls_19_21" />
      				<Hotspot Radius="4" X="68.9336" Y="-62.43347" Z="-3.005558" name="lvls_19_21" />
      				<Hotspot Radius="4" X="68.9336" Y="-57.43347" Z="-3.35180664" name="lvls_19_21" />
      				<Hotspot Radius="4" X="68.9336" Y="-52.43347" Z="-4.61355972" name="lvls_19_21" />
      				<Hotspot Radius="4" X="73.9336" Y="-67.43347" Z="-2.01541519" name="lvls_19_21" />
      				<Hotspot Radius="4" X="73.9336" Y="-62.43347" Z="-2.61348343" name="lvls_19_21" />
      				<Hotspot Radius="4" X="73.9336" Y="-57.43347" Z="-3.004856" name="lvls_19_21" />
      				<Hotspot Radius="4" X="73.9336" Y="-52.43347" Z="-4.05124664" name="lvls_19_21" />
      				<Hotspot Radius="4" X="78.9336" Y="-67.43347" Z="-1.90500641" name="lvls_19_21" />
      				<Hotspot Radius="4" X="78.9336" Y="-62.43347" Z="-2.18733215" name="lvls_19_21" />
      				<Hotspot Radius="4" X="78.9336" Y="-57.43347" Z="-2.643505" name="lvls_19_21" />
      				<Hotspot Radius="4" X="78.9336" Y="-52.43347" Z="-3.1787796" name="lvls_19_21" />
      				<Hotspot Radius="4" X="83.9336" Y="-67.43347" Z="-0.553107142" name="lvls_19_21" />
      				<Hotspot Radius="4" X="83.9336" Y="-62.43347" Z="-1.146189" name="lvls_19_21" />
      				<Hotspot Radius="4" X="83.9336" Y="-57.43347" Z="-2.15043259" name="lvls_19_21" />
      				<Hotspot Radius="4" X="88.9336" Y="-67.43347" Z="-1.14617014" name="lvls_19_21" />
      				<Hotspot Radius="4" X="88.9336" Y="-62.43347" Z="-1.1461314" name="lvls_19_21" />
      				<Hotspot Radius="4" X="88.9336" Y="-57.43347" Z="-1.84325922" name="lvls_19_21" />
      				<Hotspot Radius="4" X="88.9336" Y="-52.43347" Z="-1.950634" name="lvls_19_21" />
      				<Hotspot Radius="4" X="62.73329" Y="-47.36081" Z="-6.88913727" name="lvls_19_21" />
      				<Hotspot Radius="4" X="67.73329" Y="-47.36081" Z="-6.0908165" name="lvls_19_21" />
      				<Hotspot Radius="4" X="72.73329" Y="-47.36081" Z="-5.004032" name="lvls_19_21" />
      				<Hotspot Radius="4" X="77.73329" Y="-47.36081" Z="-3.570198" name="lvls_19_21" />
      				<Hotspot Radius="4" X="82.73329" Y="-47.36081" Z="-2.42722321" name="lvls_19_21" />
      				<Hotspot Radius="4" X="62.35031" Y="-42.1235962" Z="-6.79050064" name="lvls_19_21" />
      				<Hotspot Radius="4" X="67.35031" Y="-42.1235962" Z="-6.15615845" name="lvls_19_21" />
      				<Hotspot Radius="4" X="72.35031" Y="-42.1235962" Z="-5.16084671" name="lvls_19_21" />
      				<Hotspot Radius="4" X="77.35031" Y="-42.1235962" Z="-3.75129318" name="lvls_19_21" />
      				<Hotspot Radius="4" X="82.35031" Y="-42.1235962" Z="-2.678318" name="lvls_19_21" />
      				<Hotspot Radius="4" X="62.1999054" Y="-37.0986748" Z="-6.43483353" name="lvls_19_21" />
      				<Hotspot Radius="4" X="67.1999054" Y="-37.0986748" Z="-6.045944" name="lvls_19_21" />
      				<Hotspot Radius="4" X="72.1999054" Y="-37.0986748" Z="-5.3210907" name="lvls_19_21" />
      				<Hotspot Radius="4" X="77.1999054" Y="-37.0986748" Z="-4.10297" name="lvls_19_21" />
      				<Hotspot Radius="4" X="82.1999054" Y="-37.0986748" Z="-3.12321854" name="lvls_19_21" />
      				<Hotspot Radius="4" X="62.0364456" Y="-31.6365547" Z="-5.75805664" name="lvls_19_21" />
      				<Hotspot Radius="4" X="67.0364456" Y="-31.6365547" Z="-5.58519745" name="lvls_19_21" />
      				<Hotspot Radius="4" X="72.0364456" Y="-31.6365547" Z="-5.15543365" name="lvls_19_21" />
      				<Hotspot Radius="4" X="77.0364456" Y="-31.6365547" Z="-4.534027" name="lvls_19_21" />
      				<Hotspot Radius="4" X="82.0364456" Y="-31.6365547" Z="-3.69002914" name="lvls_19_21" />
      				<Hotspot Radius="4" X="61.8797836" Y="-26.4021683" Z="-4.35407257" name="lvls_19_21" />
      				<Hotspot Radius="4" X="66.87978" Y="-26.4021683" Z="-4.839203" name="lvls_19_21" />
      				<Hotspot Radius="4" X="71.87978" Y="-26.4021683" Z="-4.80225754" name="lvls_19_21" />
      				<Hotspot Radius="4" X="76.87978" Y="-26.4021683" Z="-4.639778" name="lvls_19_21" />
      				<Hotspot Radius="4" X="81.87978" Y="-26.4021683" Z="-4.1057663" name="lvls_19_21" />
      				<Hotspot Radius="4" X="61.57804" Y="-21.1631775" Z="-3.43893051" name="lvls_19_21" />
      				<Hotspot Radius="4" X="66.57804" Y="-21.1631775" Z="-3.192669" name="lvls_19_21" />
      				<Hotspot Radius="4" X="71.57804" Y="-21.1631775" Z="-3.97341156" name="lvls_19_21" />
      				<Hotspot Radius="4" X="76.57804" Y="-21.1631775" Z="-4.53085327" name="lvls_19_21" />
      			</Hotspots>
      			<TargetMobs>
      				<TargetMob name="Firefly" />
      				<TargetMob name="Dusk Bat" />
      				<TargetMob name="Killer Mantis" />				
      			</TargetMobs>
      			<MinLevel>0</MinLevel>
      			<MaxLevel>50</MaxLevel>
      		</GrindArea>
      	</GrindAreas>
      	<Order>
      		<Grind grindRef="lvls_15_18" while="Core.Player.ClassLevel &lt; 19" />
      		<Grind grindRef="lvls_19_21" while="Core.Player.ClassLevel &gt; 18" />
      	</Order>
      </Profile>
      
       
    4. onyxial

      onyxial New Member

      Joined:
      Nov 11, 2011
      Messages:
      22
      Likes Received:
      0
      Trophy Points:
      1
      I have done that several times to combine grind profiles and it works just fine. There is still the problem with repairs, but orderbot doesn't solve that either.
       
    5. tw1sted

      tw1sted New Member

      Joined:
      Jul 4, 2014
      Messages:
      32
      Likes Received:
      0
      Trophy Points:
      0
      Going to experiment with that, it would be awesome to set up a 1-50 before the new classes come out :)
       
    6. crazybuz

      crazybuz Member

      Joined:
      Jun 14, 2012
      Messages:
      171
      Likes Received:
      2
      Trophy Points:
      18

      To do a 1 - 50 you would need to implement a teleport like the one used in Altma grinding.
       
    7. Wheredidigo

      Wheredidigo Community Developer

      Joined:
      Dec 15, 2013
      Messages:
      417
      Likes Received:
      8
      Trophy Points:
      18
      I am currently working on a plugin that will teleport you to different zones based off of your current class level. I am currently implementing it to be used with the Fate Bot, but there's no reason that it couldn't be used with OrderBot as well.

      If someone was willing to help out with setting up the grinding area's for each zone basically all you'd need to do is this:

      Code:
        <Order>
            <Grind grindRef="lvls_15_18WesternLaNoscea" while="Core.Player.ClassLevel &lt; 19 && (LOOKUP CURRENT ZONE FROM WorldManagers)" />
        </Order>
      
      If people would be willing to help finding good grinding spots, I'm sure I could get a 1-50 OrderBot Profile set up using the new Plugin that I'll be releasing in the next day or 2.

      Please let me know if you are willing to help out with this.
       
    8. Pasquarette

      Pasquarette New Member

      Joined:
      Jun 19, 2014
      Messages:
      18
      Likes Received:
      0
      Trophy Points:
      0
      Does anyone have any working Order Bot profiles that they'd like to post?
       
    9. inferno124

      inferno124 New Member

      Joined:
      Mar 9, 2014
      Messages:
      33
      Likes Received:
      0
      Trophy Points:
      0
      First off thanks for the great explanations!

      2ndly, I am very new to this orderbot thing so I wanted to ask a few questions (please excuse the noobness of my questions).
      I read on the recent patch that we are able to equip gear and so forth for spiritbonding via orderbot and also that it will convert the gear into materia. I was wondering how do i go about making this profile? Say i want to grind an area until my items are 100% Spiritbonded, convert them into materia, then equip a new set on (same items as i will have many of these sets on me).

      Again, I am new to this orderbot (I am familar w/ grinding and profile creating for that) so detailed explanations and/or instructions would be great!

      Thank you in advanced!
       
    10. Buddernutz

      Buddernutz New Member

      Joined:
      Sep 28, 2011
      Messages:
      197
      Likes Received:
      0
      Trophy Points:
      0
      My first profile

      Hello, thanks for developing this. I've worked with it a little bit and on the second attempt i acheived the disiared results. Although there was a .net error and i had to end task through manager but it still ran while locked out. I'm attaching the profile, it's a simple Boar Hide farm in South Shroud. I will make more of these type of farms through the week and post any issues or awesomeness :) I will try find the correct log file of the crash tomorrow after work and post also.



      Second Attempt and End Result:
      View attachment LvL 45 Boar Grind South Shroud.xml


      First Attempt:
      View attachment Boar Hide LvL 45 South Shroud 29x23y.xml
       
    11. dcone

      dcone New Member

      Joined:
      Nov 19, 2014
      Messages:
      29
      Likes Received:
      0
      Trophy Points:
      1
      Is there any "grindref" equivalents for the <gather> tag?
       
    12. wilderg99

      wilderg99 New Member

      Joined:
      May 31, 2014
      Messages:
      245
      Likes Received:
      0
      Trophy Points:
      0
      nvm i got it! =)
       
    13. Cinnatoast

      Cinnatoast New Member

      Joined:
      Mar 2, 2015
      Messages:
      2
      Likes Received:
      0
      Trophy Points:
      0
      Question: How do I go about issues with line of sight? I made a profile in an area that has some blockage and rather than run around the obstructions to attack the mobs, the OrderBot just stares at the monster and idles until I move it again. Any tips? Have tried multiple CRs and all have the same issue.
       
    14. Blitzx303

      Blitzx303 Member

      Joined:
      Apr 5, 2011
      Messages:
      97
      Likes Received:
      1
      Trophy Points:
      8
      Possible to get the XYZ of a location without being there?
       
    15. kagamihiiragi17

      kagamihiiragi17 Community Developer

      Joined:
      Jun 24, 2014
      Messages:
      873
      Likes Received:
      25
      Trophy Points:
      0
      Not without being nearby. You can get locations of nearby NPCs, that's all.
       
    16. Cinnatoast

      Cinnatoast New Member

      Joined:
      Mar 2, 2015
      Messages:
      2
      Likes Received:
      0
      Trophy Points:
      0
      Is there a way to have the profile swap classes?
       

    Share This Page