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

How to get buffs' SNOId?

Karls

New Member
Joined
Apr 11, 2014
Messages
324
Reaction score
2
I might have not have searched hard enough, but haven't seen an easy way to do this, so any help would be welcome.
 
I might have not have searched hard enough, but haven't seen an easy way to do this, so any help would be welcome.

I've got a huge file for you that might come in handy here.
It's too big to add in code tags since I haven't combed through and separated out the actor-related sections. However, I did wrote a small java program to remove a TON of the miscellaneous text, so the file isn't too enormous :D

Here's an example of one of the entries:
Code:
Barbarian_BattleRage_buff   -   215686

The SnoType is 47 for every one of these.

I found this labeled as EffectGroup, but I'm fairly certain that it also pertains to the buff caster since I couldn't find anything else that resembled this data.

Hope can you get some good use out of this! View attachment effectgroupresults.txt
 
I might have not have searched hard enough, but haven't seen an easy way to do this, so any help would be welcome.
Code:
foreach (Buff a in ZetaDia.Me.GetAllBuffs())
            {
                Logger.Info("BuffID: " + a.SNOId);
            }

Not the easiest way and you have to have the buff to display the ID, but that is how I gathered some for my plugins.
 
Back
Top