I need to do something that seems like it should be simple but I'm having a tough time doing it. The end goal is to attach some properties to a Ped, for example a string that contains what is in the ped's pocket. So say, a ped was searched for the first time so I generate a string of what is in that ped's pocket and somehow save it to that ped so that if we searched the same ped again, you would get the same string. The way I have been trying to do this is by creating a class that inherits the Ped class and adding the properties to this class. The problem is if I search a ped on the street they aren't the class I created, they are a normal Ped class, so they don't have this property. This is where I'm stuck. Is it possible to clone this Ped as an object of my derived class? Or is there a simply way entirely to keep track of properties that are specific to a pedestrian? Thanks for any help. I'm not too familiar with Rage yet.