Logs a list of buffs which are currently on the player.
Logs a list of skills which are currently available to the player.
Code:
foreach (Buff b in me.getBuffs()) // Loop through List with foreach.
{
Log(b.name);
}
Logs a list of skills which are currently available to the player.
Code:
foreach (Skill b in me.getSkills()) // Loop through List with foreach.
{
Log(b.name);
}






