Dannet

sc0ttr0

Member
Joined
Jan 22, 2014
Messages
56
Reaction score
3
Points
8
Is there an example out there that shows how to monitor a specific buff on one character using dquery from another? There just doesn't seem to be lots of documentation out there.
 
I don't know how to do that with dannet but with NetBots its fairly easy. You can check ${NetBots[XYZ].Buff} and ${NetBots[XYZ].ShortBuff} to get a list of the buffs on that character
 
  • Like
Reactions: sc0ttr0
I'm tinkering with that right now, actually. Thanks.
 
This is example is for enchanter checking another toon for rune:

/dobserve ToonName -q "Me.Buff[Horrendous Rune Rk. II].ID"

then to check it:

/if (${Group.MainTank.Distance}<70 && !${Group.MainTank.Moving} && !${DanNet[ToonName].O["Me.Buff[Horrendous Rune Rk. II].ID"]})
 
  • Like
Reactions: sc0ttr0
This is example is for enchanter checking another toon for rune:

/dobserve ToonName -q "Me.Buff[Horrendous Rune Rk. II].ID"

then to check it:

/if (${Group.MainTank.Distance}<70 && !${Group.MainTank.Moving} && !${DanNet[ToonName].O["Me.Buff[Horrendous Rune Rk. II].ID"]})
Thank you! Exactly what I was looking for.
 
Thank you! Exactly what I was looking for.


No problem. This is pet buff check stuff just in case you need an example:

/dobserve PETOWNER'SNAME -q Me.PetBuff["Night's Endless Terror Rk. III"]

then to check:

!${DanNet[PETOWNER'SNAME].Observe[Me.PetBuff[Night's Endless Terror Rk. III]]}
 
  • Like
Reactions: sc0ttr0