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

[Example] Get List of buffs and skills

zdennis

New Member
Joined
Aug 2, 2012
Messages
28
Reaction score
0
Logs a list of buffs which are currently on 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);
            }
 
Back
Top