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

How to turn of hellfire spell?

yadanos

New Member
Joined
Jun 4, 2012
Messages
84
Reaction score
0
How can I turn of the AOE?

I went to

CustomClasses\Singular\ClassSpecific\Warlock

Demonology.cs


And tried edit it, but I just fail, I love this for dungeons etc, cause it auto attacks and casts spells, but the hellfire spell is just plain annoying for me, does anyone got an profile that turns it off.

so i can just sit back and relax as the bot shots at everything without the hellfire spell?

Its the only spell I don't want it to casts.




Can you guys update the Destruction.cs to the value as posted above, it works better for dungeons etc and get your warlock killed much less and takes down the ago on you.

kinda annoying to have to set it manually on every patch. =p

cheers.
 
Last edited:
you can check if another CC supports AOE spells
 
Actually, all that was need was to change this number:

// AoE rotation
new Decorator(
ret => Unit.NearbyUnfriendlyUnits.Count(u => u.IsTargetingMeOrPet || u.IsTargetingMyPartyMember || u.IsTargetingMyRaidMember) >= 3,

to

// AoE rotation
new Decorator(
ret => Unit.NearbyUnfriendlyUnits.Count(u => u.IsTargetingMeOrPet || u.IsTargetingMyPartyMember || u.IsTargetingMyRaidMember) >= 9,

so it only uses hellfire (AOE) it when its 9 or more enemy's attacking my party, else it keeps spamming single target spells :D now its totally awesome!

(just went into a dungeon and it seams to work as described, ill update this post if this did not do the work)
 
Back
Top