• Visit Rebornbuddy
  • API Questions

    Discussion in 'Community Developer Forum' started by CataclysmX, May 27, 2014.

    1. CataclysmX

      CataclysmX New Member

      Joined:
      Apr 27, 2014
      Messages:
      78
      Likes Received:
      0
      Trophy Points:
      0
      Hey guys, currently building profiles - not overly what i need help with but is the api open to view so i can see whats available - for example things like an if level equal to n do x

      Does that make sense?
       
    2. alltrueist

      alltrueist Active Member

      Joined:
      Dec 10, 2012
      Messages:
      1,424
      Likes Received:
      16
      Trophy Points:
      38
      Absolutely makes sense, but I can't answer your first question. I'd love to see the API as well, I've spent way too much time guessing at functions until I get it right :/
       
    3. CataclysmX

      CataclysmX New Member

      Joined:
      Apr 27, 2014
      Messages:
      78
      Likes Received:
      0
      Trophy Points:
      0
      I just want an easy way to check so I don't have to keep asking people, I'm looking for a way to check if players level is less than a number so it'll either go and grind till the level, or carry on with the profile
       
    4. alltrueist

      alltrueist Active Member

      Joined:
      Dec 10, 2012
      Messages:
      1,424
      Likes Received:
      16
      Trophy Points:
      38
      And you're not finding anything related to level under BuddyTor.Me ?
       
    5. Cryogenesis

      Cryogenesis Moderator Moderator

      Joined:
      Jul 13, 2010
      Messages:
      2,128
      Likes Received:
      13
      Trophy Points:
      38
      For profiles see the guides section...

      Straight from kicks guide:
      Code:
      <Profile>
      <Name>Name of Profile</Name>
      <Vendors>
      <!-- vendors here -->
      </Vendors>
      
      <GrindAreas>
           <!-- Grind Area's Here -->
              <GrindArea Name="">
                  <MinLevel>1</MinLevel>
                  <MaxLevel>50</MaxLevel>
                  <Mobs>
                      <Mob></Mob>
                      <Mob></Mob>
                      <Mob></Mob>
                      <Mob></Mob>
                      <Mob></Mob>
                      <Mob></Mob>
                  </Mobs>
                  <Hotspots>
                      
                      
                      
                      
                      
                  </Hotspots>
              </GrindArea>    
      
      
      </GrindAreas>
      
                  <Grind GrindRef="" While="Me.Level &lt; 51" />
      
      </Profile>
      
      For Grind profiles, this is all you need.
      Got questions just ask :)

      for the API, its the continuing mystery :)
       
    6. CataclysmX

      CataclysmX New Member

      Joined:
      Apr 27, 2014
      Messages:
      78
      Likes Received:
      0
      Trophy Points:
      0
      I'll probably have a better look when I get home but at first glance I couldn't find much - hence why I was asking if there was an open to read api
       
    7. CataclysmX

      CataclysmX New Member

      Joined:
      Apr 27, 2014
      Messages:
      78
      Likes Received:
      0
      Trophy Points:
      0
      Is this the same for if I'm below level x do this otherwise if I'm above level x do this
       
    8. Cryogenesis

      Cryogenesis Moderator Moderator

      Joined:
      Jul 13, 2010
      Messages:
      2,128
      Likes Received:
      13
      Trophy Points:
      38
      no you will have to use
      Code:
      Me.Level &lt; 51
      for LowerThen and
      Code:
      Me.Level &gt; 51
      for GreaterThen
       
    9. CataclysmX

      CataclysmX New Member

      Joined:
      Apr 27, 2014
      Messages:
      78
      Likes Received:
      0
      Trophy Points:
      0
      Outstanding, thanks heaps man
       
    10. Cryogenesis

      Cryogenesis Moderator Moderator

      Joined:
      Jul 13, 2010
      Messages:
      2,128
      Likes Received:
      13
      Trophy Points:
      38
    11. CataclysmX

      CataclysmX New Member

      Joined:
      Apr 27, 2014
      Messages:
      78
      Likes Received:
      0
      Trophy Points:
      0
      Now I just need my buddy wing fixed up so I can actually bot rather than just gather data :p
       

    Share This Page