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

UseItemOn not working

thenrique87

Member
Joined
May 20, 2010
Messages
143
Reaction score
0
Hey guys...

Sorry if this is not the right place for this but it seemed like a good fit for the issue. I have noticed that for a couple of times, my toons have gotten stuck in some actions which wouldnt finish the quest therefore never move on unless I did the action manually. On a closer look to the code, I also noticed that everytime it got stuck on the code it was on UseItemOn. I have more than one account so I was able to cancel the more obvious stuff:

1- re-downloaded HB
2- erased Mesh folder
3- retried 5 times with different setting here and there

Unfortunately, because of all the deleting and downloading and changes here and there I dont have any log to show, but if you like to try and see for yourself, here are two codes that went really bad:

<!----------------------------------------------------------------------------------------------------------!>
<If Condition="!HasQuest(13961) &amp;&amp; !IsQuestCompleted(13961)">
<PickUp QuestName="Drag it Out of Them" QuestId="13961" GiverName="Togrik" GiverId="34513" />
</If>

<!-- Drag it out of them -->
<While Condition="HasQuest(13961) &amp;&amp; !IsQuestCompleted(13961)">
<CustomBehavior File="UserSettings" LootMobs="False" />


<While Condition="!Me.HasAura(&quot;Dragging a Razormane&quot;)">
<CustomBehavior File="UseItemOn" QuestId="13961" MobState="Alive" MobType="Npc" MobId="34503" ItemId="46722" NumOfTimes="1" WaitTime="10000" CollectionDistance="1" X="173.6688" Y="-2877.327" Z="92.53074" />
<CustomBehavior File="InteractWith" MobId="34503" GossipOptions="1" X="173.6688" Y="-2877.327" Z="92.53074" />
</While>

<If Condition="Me.HasAura(&quot;Dragging a Razormane&quot;)">
<RunTo X="264.8679" Y="-3047.376" Z="96.65936" />
<CustomBehavior File="WaitTimer" WaitTime="3000" />
</If>
</While>


<CustomBehavior File="UserSettings" LootMobs="True" />


<If Condition="HasQuest(13961) &amp;&amp; IsQuestCompleted(13961)">
<TurnIn QuestName="Drag it Out of Them" QuestId="13961" TurnInName="Togrik" TurnInId="34513" />
</If>

<!----------------------------------------------------------------------------------------------------------!>
<If Condition="!IsQuestCompleted(10651) &amp;&amp; !IsQuestCompleted(10692)">
<PickUp QuestName="Varedis Must Be Stopped" QuestId="10651" GiverName="Exarch Onaala" GiverId="21860" />
<Else>
<PickUp QuestName="Varedis Must Be Stopped" QuestId="10692" GiverName="Larissa Sunstrike" GiverId="21954" />
</Else>
</If>


<If Condition="HasQuest(10651) &amp;&amp; !IsQuestCompleted(10651)">
<CustomBehavior File="UserSettings" LootMobs="True" PullDistance="20" />
<CustomBehavior File="FlyTo" X="-3879.108" Y="292.2326" Z="137.1892" />
<CustomBehavior File="ForcedDismount" />
<CustomBehavior File="UseItemOn" QuestId="10651" ItemId="30854" MobId="21178" HasAuraId="37683" MobHpPercentLeft="60" X="-3915.888" Y="256.1124" Z="139.1582" />
<Objective QuestName="Varedis Must Be Stopped" QuestId="10651" Type="KillMob" MobId="21164" KillCount="1" />
<Objective QuestName="Varedis Must Be Stopped" QuestId="10651" Type="KillMob" MobId="21168" KillCount="1" />
<Objective QuestName="Varedis Must Be Stopped" QuestId="10651" Type="KillMob" MobId="21171" KillCount="1" />
</If>


<If Condition="HasQuest(10651) &amp;&amp; IsQuestCompleted(10651)">
<CustomBehavior File="FlyTo" X="-3020.424" Y="840.5181" Z="-10.29259" />
<CustomBehavior File="ForcedDismount" />
<TurnIn QuestName="Varedis Must Be Stopped" QuestId="10651" TurnInName="Exarch Onaala" TurnInId="21860" />
</If>
<!----------------------------------------------------------------------------------------------------------!>

Maybe Im just being stupid, but let me know whether Im on to something or Im just crazy. Ty.
 
Back
Top