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

Problem with InteractWith after CombatUseItemOn

NikkiD

New Member
Joined
Jul 8, 2010
Messages
19
Reaction score
0
New to the bot, I'm trying to write a Northern Barrens profile, since I can cheat a little and look at existing ones if I get too stuck. All the quests are not there. I got to the ride caravan, but I am stuck on "Drag it Out of Them". I need to throw a net on the mob, then interact with the mob and select the first gossipoption. The part where I use the item works, but player keeps attacking the target and never interacts.

I thought maybe a macro instead? But at 2am last night, I couldn't even type.
PHP:
<!-- Drag it Out of Them -->
 <While Condition="(HasQuest(13961)) &amp;&amp; (!IsQuestCompleted(13961))"> 
  <CustomBehavior File="UserSettings" PullDistance="1" />
  <CustomBehavior File="CombatUseItemOn" QuestId="13961" MobId="34503" ItemId="46722" MobHpPercentLeft="99" NumOfTimes="1" X="284.9279" Y="-2707.385" Z="93.96619"  /> 
  <CustomBehavior File="InteractWith" QuestId="13961" MobId="34503" NumOfTimes="1" CollectionDistance="50" WaitTime="1000" GossipOptions="1" X="284.9279" Y="-2707.385" Z="93.96619" />
 
  
  <If Condition="Me.HasAura(&quot;Dragging a Razormane&quot;)"> 
   <RunTo QuestId="13961" X="264.1475" Y="-3049.317" Z="96.77667"/>
   <CustomBehavior File="UserSettings" PullDistance="25" />
  </If>
 </While>
 
Last edited:
Looks like maybe vlad0327 might have it. Going to try after patch.

PHP:
<CustomBehavior File="InteractWithAlive" ...
 
Back
Top