Okay, I made myself a nice little class for my Infamy system called Game_Infamy, and in there, I made all the values.
I call it in Scene_Infamy though and I get an error.
the first variable mentioned in the scene is
And I get the error:
'Undefined method '+'
And yet, in Game_Infamy I have
And later on
Can anybody help?
I call it in Scene_Infamy though and I get an error.
the first variable mentioned in the scene is
Code:
$arrests += 1
And I get the error:
'Undefined method '+'
And yet, in Game_Infamy I have
Code:
attr_accessor :arrests
And later on
Code:
$arrests = 0
Can anybody help?