Add Object Problem

When use addobject new object’ll has same name so how to make name different?
If name can’t change how to get object that just add.

There is no need to change the objects name. If you want to access this object (Python only) you can use the objects reference.
e.g.


newGameObject = scene.addObject(templateObject, postionObject)

or


newGameObject = addObjectActuator.objectLastCreated # after the actuator created the object!!!!

Better describe what you want to do with that object.

Oh thank you Monster that are what I want.