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

Cast Vex on multiple mobs?

RiftBob

New Member
Joined
May 31, 2011
Messages
20
Reaction score
0
Is there a way to tell the bot to cycle through multiple mobs, casting Vex on them to pull? I'm editing the default Cleric routine to add some AE capability, and getting multiple Vex's up for the healing is a great way to start the rotation.

I've been studying the "CreatePullBehavior()" section of the default Cleric routine but I can't figure out how to accomplish this.

Thanks!
 
In combat you will need a list of local hostile mobs in line of sight.
Iterate the list and cast vex on all of them.

Code:
            RiftUnit bestUnitToVex = (from unit in GigaRift.Objects.GetUnits()
                                         where unit.DistanceSqr < 35 * 35 && !unit.IsDead && unit.IsTargetingMeOrPet && unit.IsHostile && 
                                         unit.InLineOfSight() && !unit.HasBuff("Vex")
                                         orderby unit.Health ascending
                                         select unit).FirstOrDefault();

Something like that perhaps ?
 
Would be very interested in this too RiftBob - the start of an Inquisitor routine for the bot!
 
I'm building the routine for this build:

The Duracell Cleric: A Build for Most Seasons

It requires a minimum level of 27 (see this post for level 27+ build)

I have everything done except the multiple-mob-Vex pull piece. It's all coded, I just need Trion to stop patching the game so I can test it. :( Of course, I tend to spend a lot more time messing with Routines when the bot is down for patching, so I guess it has it's upside. :)

Once I've got it working I'll post the source. It's a simple modification of the default Cleric routine.
 
Was about to try something for ranged Inq but I only saw the source code today so haven't even started yet - but the build you posted above looks even better - will wait for yours, thanks :D
 
Not worth using an AOE build with Ryftomate, better search for singe target builds.
 
Not worth using an AOE build with Ryftomate, better search for singe target builds.
The build I posted does better at both single target, and AE, than the default build. At least at my current level (32). My thinking is to continue with single target profiles (but be able to kill individual mobs faster), but always try to pull multiple mobs when possible, and be able to kill multiples much faster as well.

Sorry, that was terribly worded. Hopefully it makes sense.
 
So much thanks RiftBob, that's the build I really wanted my Cleric to be using with the bot, can't wait to check out your routine :)
 
I'm quite looking forward to seeing your work in action as well, RiftBob :)
 
Would be very interested in this too RiftBob - the start of an Inquisitor routine for the bot!

A build that spams Vex in warfronts or in Rift public groups or instances would be interesting. Lets see what DaSandman comes up with.

Looking forward to this :)
 
I ran this routine last night at level 32, it worked well, but there weren't many multi-mob pulls. I'm on the road all day today, so this weekend I'll confirm that the multi-Vex pull is working as intended and get the routine posted here.

So far so good though.
 
Back
Top