realtime parenting script help

I posted this in the realtime forum as well but i suppose this is a better place.

I dont know python but im using this script (previously a radar script)

GetPos script: own=GameLogic.getCurrentcontroller().getOwner() 

Gamelogic.playerPos=own.getPosition() 

SetPos script: if hasattr(GameLogic, "playerPos"): 
                                 own.GameLogic.getCurrentController().getOwner() 
                                 own.setPosition(GameLogic.playerPos)

to get the position of a car and set the position of the player to the car seat. How would I…

1 get it to copy the rotation as well as the position
2 get it to only copy the position of a car with a certain property

Cheers.

know one seems to know the anser to this so ill explain differently. What is the alternative of get.Position for rotation is it get.rotation if so how do I put that into the scripts above?

try this:
http://oldsite.blender3d.org/gameBlenderDoc/pythonexamples.html#BROWN

setOrientation!! woop woop! this probably seems stupid to you python experts but i made a realtime parenting script. Cheers for the link JMS.