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

Archeage Buff ID's

Cupcakeofdoom

New Member
Joined
Oct 7, 2014
Messages
10
Reaction score
0
Is there a list of buff ID's anywhere?
Would need it for a script I am making and cant find anything anywhere :/

Thanks for every help in advance x3
 
You can use this script to list every buff which is currently active on your character:

Code:
foreach (Buff b in me.getBuffs()) 
{
	Log(b.name + " | " b.id);
}
 
Back
Top