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

Consult!Grind Bot!

qcde

New Member
Joined
Jan 15, 2016
Messages
4
Reaction score
0
I recorded an attacking-monster script.I always start to attack when I met a monster.How to set
run a circle, pull a lot of monsters then start to attack?
 
Hi, Qcde,

First, you will need to cast your Grinding in terms of a Questing profile. You can find an example here:

Then, you will need to modify the profile to disable combat while you run to collect the mobs:
<DisableBehavior Name="Combat" />

Run in your circle, then when you get to the destination, re-enable combat:
<MoveTo ... />
<MoveTo ... />
<EnableBehavior Name="Combat" />

Put this in a While loop to go indefinitely:
<While Condition="true">
<!-- ...disable combat, run in circle, enable combat here... -->
</While>

cheers & much success with your project,
chinajade
 
Last edited:
Back
Top