Any chance to get a youtube instructional vid to use mq2bot (especially pull set up?

Dealings

Well-known member
Joined
Jul 14, 2006
Messages
3,148
Reaction score
113
Points
63
Would be nice, its been yrs since i was able to have bot (macro) do pulls
been messing w bot plugin and would be nice to understand how to make it pull and to get it going
anyways just thought id ask
 
  • Like
Reactions: tiki
Need to make the puller the Group puller and then /bot dopulls=1
Set range you want to pull ie /bot PullingDistance=150
I use a multiline hotkey they added a radius to the map so I can see what its going to pull.
/multiline ; /bot PullingDistance=150 ; /mapfilter CastRadius 150

and the height ie /Bot PullingMaxZ=10

Make sure you have the latest meshes or it may not pull
 
This is what I have but no dice

Code:
DoPulls=1
PullSkillName=range
PullSkillRange=250
PullingDistance=500
PullingMaxZ=50
PullingLOS=1
PullingFilter=0
 
This is what I have but no dice

Code:
DoPulls=1
PullSkillName=range
PullSkillRange=250
PullingDistance=500
PullingMaxZ=50
PullingLOS=1
PullingFilter=0

PullingFilter=0 will make it not pull anything LOL. It needs to evaluate to true when checking a mob to pull.

Here is a thrown together example:
Code:
PullingFilter=${Spawn[0].Type.Equal[npc]} && !${Select[${Spawn[0].Type},pet,aura,campfire,banner,mercenary,pc,merc,corpse]} && ${SpawnCount[${Spawn[0].Name} noalert 1 npc]} && ${Spawn[0].Level}>=1

If you don't want any special filtering for the mob being evaluated to pull, you need to just have:

Code:
PullingFilter=1

htw
 
&& ${SpawnCount[${Spawn[0].Name} noalert 1 npc]}

If you don't mind me asking, what does this do? I had better luck with this removed.