class Game_Party
#--------------------------------------------------------------------------
# * Public Instance Variables
#--------------------------------------------------------------------------
attr_reader :actors # actors
attr_reader :gold # amount of gold
attr_reader :steps # number of steps
#--------------------------------------------------------------------------
# * Object Initialization
#--------------------------------------------------------------------------
def initialize
# Create actor array
@actors = []
# Initialize amount of gold and steps
@gold = 0
@steps = 0
# Create amount in possession hash for items, weapons, and armor
@items = {}
@weapons = {}
@armors = {}
end
This seemed like where I would insert the variable, where is says "attr_reader :steps # number of steps" I would make a line after that that said "attr_reader :Skill_Points # amount of Skill points"
...
Them I thought if I edited this, I may have to go back and edit other scripts...and I don't want to edit the game to a point where it becomes unusable, not without making a back-up. Which I'll have to do if I'm going to edit myself.