Retrieves a skill.
[C#] In C#, this property is the indexer for the Skills class.
[Visual Basic] Public Default Property ReadOnly Item( _ ByVal skill_id As Integer _ ) As Skill [C#] public Skill this[ int skill_id ] { get; } [C++] public: __property Skill* get_Item( int skill_id ); [JScript] returnValue = SkillsObject.Item( skill_id ); -or- returnValue = SkillsObject( skill_id );
[JScript] In JScript, you can use the default indexed properties defined by a type, but you cannot explicitly define your own. However, specifying the expando attribute on a class automatically provides a default indexed property whose type is Object and whose index type is String.
Skills Class | croemud.skill Namespace