QUOTE (Kread-EX @ Jul 22 2011, 10:28 AM)

Why not simply make the necessary modifications to RPG::Actor so they're reflected inside $data_actors?
Basically, that's what I did. You're saying leave it called "RPG::Actors" instead of changing the name. I'll see what happens.
EDITTED
@parameters = Table.new(6,100)
for i in 1..99
@parameters[0,i] = 400+i*50
@parameters[1,i] = 80+i*10
@parameters[2,i] = 15+i*5/4
@parameters[3,i] = 15+i*5/4
@parameters[4,i] = 20+i*5/2
@parameters[5,i] = 20+i*5/2
This is the parameters section. I wanted to be able to add a few parameters. So, what's up with this table? Is that MHP, HP, MMP, MP, ATT, DEF, SPI and AGI? The equations at the right. . .what exactly are those doing?
This post has been edited by DUFUTA: Jul 22 2011, 10:45 AM