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

REQUEST Custom behavior Change pull distance

blancharke

Member
Joined
Jan 15, 2010
Messages
225
Reaction score
4
I need something in the line of
Code:
[COLOR=black]<CUSTOMBEHAVIOR< font>[COLOR=#a9a9a9]File="[/COLOR][COLOR=black]ChangePulldistance[/COLOR][COLOR=#a9a9a9]"  [/COLOR][COLOR=black]QuestId="[/COLOR][COLOR=#a9a9a9]xxxx[/COLOR][COLOR=black]"[/COLOR][COLOR=black]Pulldistance[/COLOR][COLOR=black]="[/COLOR][COLOR=#a9a9a9]1[/COLOR][COLOR=black]" />[/COLOR]
Then it does the quest that is required to do and then
Code:
[COLOR=black]<CUSTOMBEHAVIOR< font>[COLOR=#a9a9a9]File="[/COLOR][COLOR=black]ChangePulldistance[/COLOR][COLOR=#a9a9a9]"  [/COLOR][COLOR=black]QuestId="[/COLOR][COLOR=#a9a9a9]xxxx[/COLOR][COLOR=black]"[/COLOR][COLOR=black]Pulldistance[/COLOR][COLOR=black]="30[/COLOR][COLOR=black]" />[/COLOR]

If somebody knows how to make, I'll be very grateful :)
[/COLOR][/COLOR]
 
Problem is what all "combat" actions handled by CC
And it's main reason why "CombatUseItemOn" not working (actualy do not even completed).
 
Last edited:
The standard pulldistance of the bot is 30 when i put it on 5 i can do the quest. It doesn't matter wich cc it uses.
I'll explain why I need this. This is the quest i want it for but it can be used for other quests for sure.
Axis of Awful - Quest - World of Warcraft
Use the Clever Plant Disguise Kit to sneak up on the Mosshide Representative and use the Potent Murloc Pheromones on him

This is how my code looks like and what is working with pulldistance 5 on the general settings tab of HB *see attachment below

Still I would like to have such behavior so profile can be released when ready
 

Attachments

Last edited:
QuestOrder part:
PHP:
<CustomBehavior QuestId="26868"
  File="UseItemOn"
  MobId="44262"
  ItemId="60503"
  NumOfTimes="1"
  ObjectType="Npc"
  CollectionDistance="5"    // other words there is Use range
  X="12.3" Y="45.6" Z="78.9" />    // place your coords
Plus add:
PHP:
<AvoidMobs>
  <Mob Name="Mosshide Representative" Id="44262" />
</AvoidMobs>
...to prevent pulling them.
 
Back
Top