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

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

How to edit vaal fireball to only kill mobs with packsize of more than x?

tonyhk32

Member
Joined
Dec 9, 2010
Messages
52
I'm using sparky's CR atm, I changed the vaal spark to VFB.
I would like to change the build so it will only stop with packsize more than X amount. Since VFB/VS always been a speed run build.

Could anyone enlighten me on how I can proceed with this magic?

Thanks!
 
In the cast conditions you can set pack sizes.

For example:

Code:
if (_orbOfStormSlot != -1 && _orbOfStormStopwatch.ElapsedMilliseconds >
                    6000 && ((NumberOfMobsNear(LokiPoe.Me, 30) > 5) || (cachedRarity >= Rarity.Magic)))

Here I've set it so it will only try to cast orb of storms if the stopwatch is greater than 6 seconds (the cooldown on the spell), and either the number of mobs within 30 spaces is greater than 5 or it encounters a mob that has rarity Magic or higher. Putting the NumberOfMobsNear with your desired pack size should be fine to configure when to cast the spell, but as for 'only stopping' not sure how to get it to ignore small pack sizes.
 
Back
Top