if (stealth_points > 5) stealth_points = 5 endif

stealth = 1 - 0.3*stealth_points
walk_speed = walk_speed + 0.1*speed_points
run_speed = run_speed + 0.5*speed_points
attack = attack + 8*attack_points
defend = defend + 10*defend_points
climb = 0.25*climb_points
swim = 0.25*swim_points

if (climb > 1) climb = 1 endif
if (swim > 1) swim = 1 endif