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

How do you find buff id??

c57lee

New Member
Joined
Apr 12, 2014
Messages
11
Reaction score
0
I am new to archebuddy and trying to write a short script.
But im stuck with finding out buff id's?
Some suggested that it's available on Arche database but I can only find skill id's.
Please help ..
 
Hi!
use Dumpy or simple code:
Code:
                foreach(var buff in me.getBuffs())
                {
                    Log(string.Format("id:{0} name:{1}",buff.id,buff.name));
                }
or
Code:
 sqlCore.sqlBuffs
 
Last edited:
Back
Top