setIdentity: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
No edit summary
No edit summary
Line 22: Line 22:


Set '''identity''' of '''person'''.<br>
Set '''identity''' of '''person'''.<br>
Identities are defined in [[descripion.ext]] of the mission or campaign.
Identities are defined in [[description.ext]] of the mission or campaign.





Revision as of 17:21, 21 April 2006


back to COMREF

person setIdentity identity


Operand types:

person: Object

identity: String

Type of returned value:

Nothing

Description:

Set identity of person.
Identities are defined in description.ext of the mission or campaign.


Example:

soldier1 setIdentity "John_Doe"


Comments:

The definition format in the description.ext file is:

class CfgIdentities
{
 class John_Doe
 {
  name="John Bartholemew Doe";
  face="Face20";
  glasses="None";
  speaker="Dan";
  pitch=1.1;
 };
};