What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

[Request] Level 80 Questing

sainter222

Member
Joined
Jan 15, 2010
Messages
482
Reaction score
9
Hey is there any chance someone can make or edit a profile or level 80 questing?

I dont mean doing northrend quests, i mean using my lvl 80 to go to azeroth to do all the lower level quests. This could be used to do the loremaster achievments, i have tried doing it myself but failed epicly.

loremaster.jpg
 
Creating a 1-80 takes a very long time to do - if it didn't there would be a lot more of them. In any case you'll be level 80 before that happens. If you want one that badly learn and make one.
 
Yea if someone could just edit a profile that has always been created, 125 quests would be awesome. If anyone can help me edit i would really appreciate it, i tried editing a questing profile erlier and it didnt work at all.
 
Basically find all the MinLevel/MaxLevel tags and change to 1/80. If you can't do it on your own ill help you out.
Code:
<SubProfile>
  <Name>Weeping Cave 54-60</Name>
  [B][U]<MinLevel>54</MinLevel>[/U][/B]
  <[U][B]MaxLevel>60</MaxLevel>[/B][/U]

It should be
Code:
<SubProfile>
  <Name>Weeping Cave 54-60</Name>
  [B][U]<MinLevel>1</MinLevel>[/U][/B]
  <[B][U]MaxLevel>80</MaxLevel>[/U][/B]
 
Workin on it, but you wont see much till after cata comes out.

The plan way down the road is to make a Breakneck Seeker Profile. Dont ask when it will be done.
 
sainter222 said:
Gimik, i thought it was that easy but seems not, here, i edited a profile like you said and i load it and run it and nothing happens

Indeed, its 'not that easy'.

Your selected profile is built using SubProfiles. Subprofiles are not allowed to 'overlap level ranges'. (Documented in the "things to know" here.) This is what happens if you just set <MinLevel> to 1 and <MaxLevel> to 80 for each of the SubProfiles. Honorbuddy behaviour for overlapping level ranges is undocumented, and most of the time it just chooses to stand around.

To make a Questing profile "level 80 friendly" for doing what you want, it should be written using <Checkpoint>, not <SubProfile>. With Checkpoints, to make it "level 80 friendly", you just include the IgnoreCheckpoints="true" attribute in the QuestOrder element. (Ref: here)

You can make this profile do what you want, but its going to take a bit more effort than just changing <MinLevel> and <MaxLevel>. You'll need to remove all the SubProfiles, and combine all the information in similar 'blocks'. I.e., All <AvoidMob> are in one <AvoidMobs> block, same for <Vendors>, <Mailboxes>, <Blackspots>, and most importantly <QuestOrder>.

Sorry for the bad news. :D

cheers,
CJ
 
Last edited:
Back
Top