Hi! You should create a file called description.ext in your mission's folder and put in it this:
class CfgIdentities
{
Identities[] = {};
class Jugador
{
name = "Hinojosa Cobacho";
face = "face27";
glasses = "NONE";
speaker="Adam";
pitch = 1.00;
};
};
Put the name you want to give to the player in the name field, and you can change this line:
class
jugadorThe face is the face you want to give him. Just go to the custmoize screen at the beginning of the game and see which face is the one you like the most. Now, to give the player an identity, put in his init field:
this setidentity "JUGADOR"
If you changed the word "jugador" for other "hahaha" for example, you should put: this setidentity "hahaha".
Hope this helps
By the way, this tutorial can help you too:
http://www.ofpec.com/editors/tutorial_view.php?id=18