i tried the search thing...but i rarely and [no surprise] this time couldn't find what i wanted...
anyway, ok. well basically...i just want the...
ability points...
ability points to next level...
ability levels.....
etc... u know? just the basic ap set up.
i know im asking for something really easy....but i can't script....so.....
i guess after that...i'd need more help......
i just really think the way i tried to make it was wrong....and yeah i got quite a few errors...here ill show u how i tried to go about making it yesterday.
#current amount of ability points
$ability_points=0
#current ability level
@ability_level=1
#math...
@next_ability_level= 100 * @ability_level
if $ability_points > @next_ability_level
@ability_level + 1
end
if @ability_level == 5
print(you have ability level 5)
end
if @ability_level == 10
print(you have ability level 10)
end
and the errors come when i ...ya know add ability points....
$ability_points+1
end
thats the script i use it gives a syntax error.
when i use a larger amount like 88....
$ability_points+88
end
i get the error...
no method error occurred while running script. undefined method '+' for nil nil:Nilclass