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

Nephalem Buff

Jirajha

New Member
Joined
Apr 6, 2013
Messages
10
Reaction score
0
Hey guys,

does anyone know, if there is a possibility to check if the nephalem buff is presence and if yes, how far it is stacked?

The idea would be:
Profile with random areas including act3 - Stonefort but making it just avaiuable for selection, if the nephalem buff is fully stacked to make the key dropping from the warden.


Sorry for my bad english - it's not my native.

Many thanks in advance - Jira.
 
Ah there is actually a add-on someone made for their profiles that checks Neph stacks... I forget where I seen it though.
 
This is how you may get that done.

Code:
<While condition="NephalemValorCount() &lt; 5">
     <!-- search for elites -->
</While>
<!-- Now you got 5th nef -->

or

<If condition="NephalemValorCount() == 5>
     <!-- do whatever you want now, eg. search for key keeper -->
</If>

Hope it helps
 
Last edited:
Was wondering, since "<" is not allowed in xml would a better choice be "not like"
 
You can use &lt; since < is a special token in xml
 
Any hope "if 5nv are stacked..skip all elites" to be also realized with a similar code? I gues including it in trinity as an option takes a lot more effort ?

P.S. Excuse my lack of programing skills.
 
Back
Top