C c57lee New Member Joined Apr 12, 2014 Messages 11 Reaction score 0 Apr 14, 2015 #1 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 ..
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 ..
D DjoniBrave Member Joined Sep 14, 2014 Messages 150 Reaction score 1 Apr 14, 2015 #2 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: Apr 14, 2015
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