• Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Loremaster

    Discussion in 'Honorbuddy Forum' started by soulravager, Nov 17, 2012.

    1. soulravager

      soulravager Active Member

      Joined:
      Jan 15, 2010
      Messages:
      1,654
      Likes Received:
      19
      Trophy Points:
      38
      Is there any way to become "Loremaster" at an level 90 character, using HonorBuddy?
       
    2. kuw84

      kuw84 New Member

      Joined:
      Dec 6, 2010
      Messages:
      267
      Likes Received:
      0
      Trophy Points:
      0
      Nope, some people have tried to make profiles and all have given up really.
       
    3. soulravager

      soulravager Active Member

      Joined:
      Jan 15, 2010
      Messages:
      1,654
      Likes Received:
      19
      Trophy Points:
      38
      Alright, I'll have to do it manually.
      Thanks for the quick reply.
       
    4. Jasko81

      Jasko81 New Member

      Joined:
      Oct 18, 2012
      Messages:
      48
      Likes Received:
      0
      Trophy Points:
      0
      I changed some things in kicks profiles so it does all the quests in his 1-90 pack, doesn't give you the loremaster but does a lot of Q's automatically ;)
       
      Last edited: Jan 17, 2013
    5. soulravager

      soulravager Active Member

      Joined:
      Jan 15, 2010
      Messages:
      1,654
      Likes Received:
      19
      Trophy Points:
      38
      If you're not going to share the profiles, then don't brag about it.
       
    6. ChunkyMonkey

      ChunkyMonkey Member

      Joined:
      Apr 30, 2011
      Messages:
      206
      Likes Received:
      0
      Trophy Points:
      16
      Kick's profiles are available from his SVN. I believe all of them will run.

      In case you're the lazy type who can't search:
      http://www.thebuddyforum.com/honorb...es/50549-kicks-mega-profile-packs-1-90-a.html

      Or you can look around the forum for the areas you need. Sometimes you need to change in the top section of the profile as an example <MaxLevel>60</MaxLevel> to <MaxLevel>101</MaxLevel> to make sure that the bot thinks that the profile applies to your high level character. After running kick's and some of the random abandoned loremaster profiles I'm only missing a handful of zones.
       
    7. Bounty

      Bounty Member

      Joined:
      Mar 5, 2011
      Messages:
      197
      Likes Received:
      1
      Trophy Points:
      18
      I believe you have to change
      Code:
      <QuestOrder IgnoreCheckPoints="True" >
      to
      Code:
      <QuestOrder IgnoreCheckPoints="False" >
      If I'm correct this should stop checking if you need to switch profiles. !NOT SURE! I know there is a line of code that needs to be altered though, although I can't find anything else in his profiles.
       
    8. chinajade

      chinajade Well-Known Member Moderator Buddy Core Dev

      Joined:
      Jul 20, 2010
      Messages:
      17,540
      Likes Received:
      172
      Trophy Points:
      63
      Bounty has the right idea, but backward example with this. Kick's profile is an excellent way to move along with the Loremaster achievement. The two-step edits are thus:

      1. Set <QuestOrder IgnoreCheckpoints="True">

      2. You will also need to edit some of the profiles to remove the MaxLevel element.
      There will be some zones in which it doesn't do all the quests, but it should only be a handful. An addon like Loremaster can help you find those quests that still need to be completed.

      There will be some quests you will get 'hung up' on because you are 90. The quests that require you to "kill a mob down to 30% health (or so), then use an item on them". Its amazingly hard to do this when you are 90, and the mob is level 35. The bot will need a hand on these quests, and your toon may have to become a nekkid pugilist to complete them. :D

      cheers,
      chinajade
       
      Last edited: Jan 17, 2013
    9. soulravager

      soulravager Active Member

      Joined:
      Jan 15, 2010
      Messages:
      1,654
      Likes Received:
      19
      Trophy Points:
      38
      He said he changed some things. READ before posting.
       
    10. Jasko81

      Jasko81 New Member

      Joined:
      Oct 18, 2012
      Messages:
      48
      Likes Received:
      0
      Trophy Points:
      0

      Yap, but other way round.

      I also changed all checks for max character level to 91 ( e.g.: *Me.Level &lt; 81* -> *Me.Level &lt; 91* )
      or "If Condition="(Me.Level &gt;= 81)" -> "If Condition="(Me.Level &gt;= 91)"
      and <MaxLevel> to 91, where it is needed.


      Y so grumpy..? Its not my profile..
       
      Last edited: Jan 17, 2013
    11. Bounty

      Bounty Member

      Joined:
      Mar 5, 2011
      Messages:
      197
      Likes Received:
      1
      Trophy Points:
      18
      Really? Because it already is like that in Kick's profiles and I know that those automatically change profiles. Or is that just purely checked on player.level?
       
    12. Jasko81

      Jasko81 New Member

      Joined:
      Oct 18, 2012
      Messages:
      48
      Likes Received:
      0
      Trophy Points:
      0
      purely on character level
       
    13. Jasko81

      Jasko81 New Member

      Joined:
      Oct 18, 2012
      Messages:
      48
      Likes Received:
      0
      Trophy Points:
      0
      Ok, to give a straight overview to edit Kicks Profiles to run with Lvl 90 Chars:

      1. Open the according File (e.g. [Fly][A - Quest] BC 58-70 [Kick].xml) with a .txt editor (e. g. notepad)

      2. Find "<MaxLevel>" and set to mininimum 91

      3. Find "<QuestOrder IgnoreCheckPoints="False" >"
      and change to "<QuestOrder IgnoreCheckPoints="True" >"

      4. Search for "<If Condition="(Me.Level &gt;= " and check
      if the the next line does something to stop the bot or change the profile,
      if so, change value to 91 ("<If Condition="(Me.Level &gt;= 91)")
      (Sometimes this phrase is also used to check if the character is
      high enough to pick up a quest, so read through this few lines)

      5. Search for "<While Condition="Me.MapId == XXX &amp;&amp; (Me.Level &gt;= YY)">
      -> This is the general inquiry for to change the profile:
      change YY to 91 (XXX and YY have different values in each Profile)

      6. Search for "<If Condition="(Me.Level &gt;= XX) &amp;&amp; (Me.Level &lt; YY)" >"
      -> This is the Quest limitation, put high level (YY) of each line to 91

      Points 4, 5 and 6 are not in every profile, but one of them for sure.

      Hope I didn't miss something and gave a good direction :)

      -Jasko
       
      Last edited: Jan 17, 2013
    14. Syrrafect

      Syrrafect New Member

      Joined:
      Sep 30, 2012
      Messages:
      26
      Likes Received:
      0
      Trophy Points:
      0
      Wow OP. You're a very angry person, ain't you? Treating people who try to help you like this?

      Get real.
       

    Share This Page