[...]
SendClientMessage( playerid, COLOR_WHITE, " Êtes-vous un homme ou une femme ?" );
choixhommefemme[playerid] = true;
[...]
OnPlayerText( playerid, text[] )
{
if( choixhommefemme[playerid] )
{
if( strcmp( text, "homme", true ) == 0 )
{
}
if( strcmp( text, "femme", true ) == 0 )
{
}
else
{
}
}
}