okay thanks i figured it out, thanks
but is there a way i can make my chars level go up each 10,000 exp?
I think so, you would have to set the base equation of growth/level to be something like "0" or "1" and then set the gain to 10,000.
Something like this (tested)
def make_exp_list
actor = $data_actors[@actor_id]
@exp_list[1] = 0
for i in 2..100
if i > actor.final_level
@exp_list[i] = 0
else
@exp_list[i] = ((i*10000) - 10000)
end
end
end