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

Profile just keeps loading....character not moving!!!!

Grizzzly

New Member
Joined
Aug 26, 2016
Messages
3
Reaction score
0
Ever since installing the latest update for HB, i loaded the Autoloader profile so i could start leveling but for some reason it just keeps loading but my char doesn't move.
Profile that i'm trying to use is kicks 68-80 [A]
http://puu.sh/qOTi1/7ce3977184.png

Iv'e reinstalled HB, but nothing.
 

Attachments

Last edited:
Seems like an </IF>-Tag is missing. Open Questing Profile Pack\LK\[Fly][A - Quest] LK 68-80 [Kick].xml and look for this particular code:


Code:
		<If Condition="HasQuest(12538) &amp;&amp; IsQuestCompleted(12538)">
		<If Condition="!HasItem(38512)" >
			<If Condition="Unit(28216) == null &amp;&amp; !HasItem(38512)" >
				<CustomBehavior File="InteractWith" MobId="28138" GossipOptions="1" X="5263.772" Y="4511.331" Z="-84.79517" />
			</If>
			<If Condition="Unit(28216) == null" >
				<CustomBehavior File="ForcedDismount" />
				<CustomBehavior File="UseItem" ItemId="38512" />
			</If>
			<TurnIn QuestName="The Mist Isn't Listening" QuestId="12538" TurnInName="Zepik the Gorloc Hunter"
                        TurnInId="28216" />
		</If>
		<If Condition="HasQuest(12537) &amp;&amp; IsQuestCompleted(12537)">
			<If Condition="Unit(28216) == null &amp;&amp; !HasItem(38512)" >
				<CustomBehavior File="InteractWith" MobId="28138" GossipOptions="1" X="5263.772" Y="4511.331" Z="-84.79517" />
			</If>
			<If Condition="Unit(28216) == null" >
				<CustomBehavior File="ForcedDismount" />
				<CustomBehavior File="UseItem" ItemId="38512" />
			</If>
			<TurnIn QuestName="Lightning Definitely Strikes Twice" QuestId="12537"
                        TurnInName="Zepik the Gorloc Hunter" TurnInId="28216" />
			<PickUp QuestName="Hoofing It" QuestId="12539" GiverName="Zepik the Gorloc Hunter" GiverId="28216" />
		</If>

Now add "</IF>" at this very position:

Code:
	<If Condition="HasQuest(12538) &amp;&amp; IsQuestCompleted(12538)">
		<If Condition="!HasItem(38512)" >
			<If Condition="Unit(28216) == null &amp;&amp; !HasItem(38512)" >
				<CustomBehavior File="InteractWith" MobId="28138" GossipOptions="1" X="5263.772" Y="4511.331" Z="-84.79517" />
			</If>
			<If Condition="Unit(28216) == null" >
				<CustomBehavior File="ForcedDismount" />
				<CustomBehavior File="UseItem" ItemId="38512" />
			</If>
			<TurnIn QuestName="The Mist Isn't Listening" QuestId="12538" TurnInName="Zepik the Gorloc Hunter"
                        TurnInId="28216" />
		</If>
	[B]</If>[/B] // <<<< THIS ONE
		<If Condition="HasQuest(12537) &amp;&amp; IsQuestCompleted(12537)">
			<If Condition="Unit(28216) == null &amp;&amp; !HasItem(38512)" >
				<CustomBehavior File="InteractWith" MobId="28138" GossipOptions="1" X="5263.772" Y="4511.331" Z="-84.79517" />
			</If>
			<If Condition="Unit(28216) == null" >
				<CustomBehavior File="ForcedDismount" />
				<CustomBehavior File="UseItem" ItemId="38512" />
			</If>
			<TurnIn QuestName="Lightning Definitely Strikes Twice" QuestId="12537"
                        TurnInName="Zepik the Gorloc Hunter" TurnInId="28216" />
			<PickUp QuestName="Hoofing It" QuestId="12539" GiverName="Zepik the Gorloc Hunter" GiverId="28216" />
		</If>
 
Last edited:
Thank you so much Mh66! your a legend mate! So iv'e gotten the bot to work with the profile now, but the profile itself keeps crashing now and asking me to complete the quests manually. I would have this bot running for about 5 minutes before it notifies me that there is an error.

http://puu.sh/qOVgu/8487abf87c.png and http://puu.sh/qOVh8/70612f2005.png and http://puu.sh/qOVv3/dbed03707c.png its never happened before. is their some sort of command i could type into the profile that fix's all these issues, its getting abit frustrating.
 

Attachments

Last edited:
Back
Top