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

Necrophilia - Advanced by Weischbier

  • Thread starter Thread starter weischbier
  • Start date Start date
just a quick cursory glance at the code indicates that you didn't have a pet out which was causing the calls to Me.Pet to return null.
Code:
new Decorator(ret => rank == 3 && ![U]Me.Pet[/U].ActiveAuras.ContainsKey("Dark Transformation"),
			  new Decorator(
				  ret =>
				  ![U]Me.Pet[/U].ActiveAuras.ContainsKey("Shadow Infusion") ||
				  [U]Me.Pet[/U].ActiveAuras["Shadow Infusion"].StackCount < 5,
				  Spell.CastSpell("Death Coil", ret => CurTarget, ret => true,
								  "Death Coil to maintain Shadow Infusion stacks")
				  )
	),

this could probably easily be fixed by putting the following check in before checking its auras.
Code:
new Decorator(ret => rank == 3 && Me.Pet != null && !Me.Pet.ActiveAuras.ContainsKey("Dark Transformation"),
			  new Decorator(
				  ret =>
				  Me.Pet != null && 
				  (
					  !Me.Pet.ActiveAuras.ContainsKey("Shadow Infusion") ||
					  Me.Pet.ActiveAuras["Shadow Infusion"].StackCount < 5
				  ),
				  Spell.CastSpell("Death Coil", ret => CurTarget, ret => true,
								  "Death Coil to maintain Shadow Infusion stacks")
				  )
	),
 
Last edited:
Hmmmm... That's interesting...
Maybe with the upload problem I had the wrong version installed...
Never happened with other CCs so it's probably that.

I was testing at the dummy in ebon hold and it just wouldn't stop.
Even if I deselected the dummy and put the pet on passive, it'd target it and keep going. If I turned around it'd just start hitting another dummy lol

I'll get back with feedback from the new version in a min, ty!

There is absolutely no targeting in Necrophilia.
I don't know whats causing this.

Yeah, it's most definitely still auto-targetting.
Plugins are disabled, LazyRaider's auto target is disabled and pet is on passive. Nothing else could possibly cause it, and it doesn't happen with other CCs. It's definitely Necrophilia :'(.

EDIT: It's also not using DnD on dummies (dunno if actual mobs too, I'll take it to DS after lunch)

DnD is not in and I don't think I'll add this soon...it's just a mess in DS and I don't miss it really.

There will be a fix for Death Coil soon.

greetz

Weischbier
 
I notice this for Trinkets

new Decorator(ret =>
GeneralSettings.Instance.Trinket1Usage == Enumeration.TrinketUsage.OnBoss &&
(StyxWoW.Me.CurrentTarget.IsBoss() || StyxWoW.Me.CurrentTarget.BurstThis()) &&
!StyxWoW.Me.CurrentTarget.DontBurstThis(),
new PrioritySelector(
UseEquippedItem(12),
UseEquippedItem(13)
)


The correct Trinket Slots are 13 and 14 for Trinkets, it was never using the 2nd Trinket slot.


[Edit]
it will use my Trinket if I move it into the First Trinket Slot only which is Slot #13
 
Last edited:
make so so you can enable/disable manual usage for blade flurry
 
I seem to have tried everything, but it just does not show up as a selectable CC (when logged in on my DK Frost). Haven't tried other classes yet, but still... it should, right? Files are in \HB\CustomClasses\Necrophilia - Advanced\
 
Back
Top