View Single Post
  #5  
Unread 12-10-2011, 08:59 PM
Garan's Avatar
Garan Garan is offline
The Undying
Interface Author - Click to view interfaces
 
Join Date: Oct 2010
Posts: 340
Quote:
Originally Posted by dhmitchell23
Also, how do I scan the user's clothing & skills programmatically? I don't see an analog to GetBackpack()
Turbine has not exposed the player skills for enumeration, you'd have to know which skills are available for each class at each level and then there's still the issue of whether the character has actually trained the skill.

You can access the equipped items through localPlayer:GetEquipment(). Unfortunately, we are limited as to what we can do with equipped items, for instance you can't programmatically equip an item (although you can programmatically un-equip an item, see the Unequipper plugin).

Last edited by Garan : 12-10-2011 at 09:02 PM.
Reply With Quote