okies... i've checked it... and I LOVE IT!

i'm a newbie, i admit it... and i dont understand the script... can you explain better?

CODE
module Attibute_Def
ATTRIBUTES = {
# 0 - attribute name => [
"Flame Mastery" => [
#[bonus values: HP, MP, ATK, DEF, SPI, AGI],
[6,8,1,0,6,1],
# [element_booster],
[9],
# {level => skill id}
{3 => 34, 4 => 45},
# auto_skill id]
59,
# desc line 1
"Flame Mastery: affects the user's spirit and damage made",
# desc line 2
"by fire skills, may activate Flame kick while attacking.",
# picture name
"155"
],
# 1 - attribute name => [
"Swordsmanship" => [
#[bonus values: HP, MP, ATK, DEF, SPI, AGI],
[9,2,7,3,0,1],
# [element_booster],
[2],
# {level => skill id}
{3 => 34, 4 => 45},
# auto_skill id]
nil,
# desc line 1
"Swordsmanship: affects the user's spirit and damage made",
# desc line 2
"by fire skills, may activate Flame kick while attacking.",
# picture name
"154"
]
# scene desc
}
ATTRIBUTE_names = ATTRIBUTES.keys
Actor_attributes = { 1 => [0,1],
2 => [1]
}
end
okay, i'll try my best to tell you what i don't understand.
CODE
# 0 - attribute name => [
"Flame Mastery" => [
okay, i'm sure i know what's attribute name and the number before it... always starts with 0, and so on...
CODE
#[bonus values: HP, MP, ATK, DEF, SPI, AGI],
[6,8,1,0,6,1],
so, each of this attribute increases the actor's stats by this much per level, right? hold on, for which actor? for all actors with this attribute?
CODE
# [element_booster],
[9],
what's this? i know 9 is Fire... does that mean it'll boost up Fire damage? where do i see the percentage?
CODE
# {level => skill id}
{3 => 34, 4 => 45},
what's this again? does that mean all actors with this attribute learns this skill at this level?
CODE
# auto_skill id]
59,
this is something like auto-unleash a skill with normal attack, right? so does the chance of unleash increases? maybe by attribute level or actor level?
CODE
# desc line 1
"Flame Mastery: affects the user's spirit and damage made",
# desc line 2
"by fire skills, may activate Flame kick while attacking.",
yeah... i'm sure i know what's this...
CODE
# picture name
"155"
and this too!

CODE
ATTRIBUTE_names = ATTRIBUTES.keys
Actor_attributes = { 1 => [0,1],
2 => [1]
i'm sure this means which actors has what attribute...
so, overall, the attributes are for whole party?
and how do you get the points again?
hope you can clear my doubts... i'm really interested in using this script though...