Skill CategoriesAuthor: Tsukihime
OverviewThis script allows you to define skill groups based on skill type IDs.
For example, "Black Magic" might consist of "fire", "ice", and "lightning".
Some people might be able to use "black magic", whereas others can only use fire.
Rather than displaying 3 separate commands for each type of magic, you can use a skill type category to specify that all fire, ice, and lightning magic should be grouped under "Black Magic"
Features- Displays different lists of skills under the same list
- Supports recursively defined relationships
- Provides finer management over your skills
ScreenshotsSkill group containing fire, ice, and lightning

Individual groups for each skill type
UsageDefine a set of skill types in your database (terms --> skill types)
In the configuration at the top of the script, just write which skill type contains what other skill types.
CODE
Stype_Table = {
2 => [3, 4, 5],
8 => [6, 7]
}
The first entry means that skill type 2 contains skill types 3, 4, and 5. In the screenshots above, "Magic" was skill type 2, and fire/ice/lightning are 3/4/5.
To assign multiple skill type ID's to a single skill, tag the skill with
CODE
<stype: 1,2,3,4>
For whichever skill type IDs you want.
DownloadScript:
http://db.tt/nZq6vFtx
This post has been edited by Tsukihime: Jun 13 2012, 10:14 AM