Besides my mind, I lost that a long time ago...
I created a new property for objects created inside class Game_Character, and that seems to be working just fine and dandy, but Im trying to offer a 2nd way to do the same thing by using an events name. Regular Expression. That is working just fine as well.
What I came to the conclusion of is I need to do the same thing I did to Game_Character inside Game_Event < Game_Character. Game_Event inherits properties and methods defined inside Game_Character, super has already been called. But I cant seem to figure out why I cant access the property that was defined and inherited from _Character inside the inheriting class?
Yes, I am using attr_accessor :new_property in Game_Character, so how come I cant read that property in Game_Event?