Q qcde New Member Joined Jan 15, 2016 Messages 4 Reaction score 0 Jan 17, 2016 #1 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?
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?
chinajade Community Developer Joined Jul 20, 2010 Messages 17,540 Reaction score 170 Jan 17, 2016 #2 Hi, Qcde, First, you will need to cast your Grinding in terms of a Questing profile. You can find an example here: Honorbuddy:Levelbot:Grinding Starter Profile 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: Jan 17, 2016
Hi, Qcde, First, you will need to cast your Grinding in terms of a Questing profile. You can find an example here: Honorbuddy:Levelbot:Grinding Starter Profile 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
Q qcde New Member Joined Jan 15, 2016 Messages 4 Reaction score 0 Jan 17, 2016 #3 I really appreciate it!You help me a lot!