• Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Cast Vex on multiple mobs?

    Discussion in 'Archives' started by RiftBob, Jun 9, 2011.

    1. RiftBob

      RiftBob New Member

      Joined:
      May 31, 2011
      Messages:
      20
      Likes Received:
      0
      Trophy Points:
      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!
       
    2. Hawker

      Hawker Guest

      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 ?
       
    3. RiftBob

      RiftBob New Member

      Joined:
      May 31, 2011
      Messages:
      20
      Likes Received:
      0
      Trophy Points:
      0
      Thanks Hawker. I'll see if I can make it work.
       
    4. DaSandman

      DaSandman New Member

      Joined:
      Jun 7, 2011
      Messages:
      44
      Likes Received:
      0
      Trophy Points:
      0
      Would be very interested in this too RiftBob - the start of an Inquisitor routine for the bot!
       
    5. RiftBob

      RiftBob New Member

      Joined:
      May 31, 2011
      Messages:
      20
      Likes Received:
      0
      Trophy Points:
      0
      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.
       
    6. DaSandman

      DaSandman New Member

      Joined:
      Jun 7, 2011
      Messages:
      44
      Likes Received:
      0
      Trophy Points:
      0
      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
       
    7. seisdeos

      seisdeos New Member

      Joined:
      May 30, 2011
      Messages:
      63
      Likes Received:
      0
      Trophy Points:
      0
      Not worth using an AOE build with Ryftomate, better search for singe target builds.
       
    8. RiftBob

      RiftBob New Member

      Joined:
      May 31, 2011
      Messages:
      20
      Likes Received:
      0
      Trophy Points:
      0
      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.
       
    9. hyshakt

      hyshakt New Member

      Joined:
      May 30, 2011
      Messages:
      73
      Likes Received:
      0
      Trophy Points:
      0
      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 :)
       
    10. papatoast

      papatoast Guest

      I'm quite looking forward to seeing your work in action as well, RiftBob :)
       
    11. Hawker

      Hawker Guest

      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 :)
       
    12. DaSandman

      DaSandman New Member

      Joined:
      Jun 7, 2011
      Messages:
      44
      Likes Received:
      0
      Trophy Points:
      0
      You mean RiftBob - he already has almost the full routine complete, was just trying to sort out the Vex problem that you helped him with :)
       
    13. Sepii

      Sepii New Member

      Joined:
      Jun 16, 2011
      Messages:
      33
      Likes Received:
      0
      Trophy Points:
      0
      Looking forward to this aswell!
       
    14. RiftBob

      RiftBob New Member

      Joined:
      May 31, 2011
      Messages:
      20
      Likes Received:
      0
      Trophy Points:
      0
      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.
       
    15. Sepii

      Sepii New Member

      Joined:
      Jun 16, 2011
      Messages:
      33
      Likes Received:
      0
      Trophy Points:
      0
      Any news RiftBob? :)
       

    Share This Page