Cual es el problema...
#6

Quote:
Originally Posted by Zume-Zero
Посмотреть сообщение
quй tal si pones %d en vez de %i. de lo contrario intenta otro mйtodo

pawn Код:
stock SexoPJ(playerid)
{
    new sexous[8];
    switch(JugadorInfo[playerid][Genero])
    {
        case 1:  format(sexous, sizeof(sexous), "Hombre");
        case 2:  format(sexous, sizeof(sexous), "Mujer");
        default: format(sexous, sizeof(sexous), "Desconocido");
    }
    return sexous;
}
pawn Код:
new string[64];
    format(string, sizeof(string), "Tu genero es (%s).", SexoPJ(playerid));
    return SendClientMessage(playerid, COLOR_BLANCO, string);
No me funciona.... como que no me guarda el skin, cuando hago spawnear al jugador me aparece con el skin de CJ. Seleccione genero 1, hombre y me lo guarda como 48, es decir JugadorInfo[playerid][Genero] = 48, cuando deberia de ser 1.

pawn Код:
new genero[2];
switch(JugadorInfo[playerid][Genero])
{
    case 1:  format(genero, sizeof(genero), "1");
    case 2:  format(genero, sizeof(genero), "2");
}

if (strval(genero) == 1)
{
    JugadorInfo[playerid][Skin] = 20;
    SetPlayerSkin(playerid, JugadorInfo[playerid][Skin]);
}
else if (strval(genero) == 2)
{
    JugadorInfo[playerid][Skin] = 12;
    SetPlayerSkin(playerid, JugadorInfo[playerid][Skin]);
}
Reply


Messages In This Thread
Cual es el problema... - by YazukiAkira - 14.07.2014, 05:02
Respuesta: Cual es el problema... - by Zume - 14.07.2014, 05:06
Respuesta: Cual es el problema... - by YazukiAkira - 14.07.2014, 05:13
Re: Cual es el problema... - by YazukiAkira - 14.07.2014, 18:34
Respuesta: Cual es el problema... - by Zume - 14.07.2014, 19:16
Re: Respuesta: Cual es el problema... - by YazukiAkira - 15.07.2014, 01:20
Respuesta: Cual es el problema... - by Zume - 15.07.2014, 01:27
Re: Cual es el problema... - by YazukiAkira - 15.07.2014, 01:32
Re: Cual es el problema... - by YazukiAkira - 15.07.2014, 02:19
Respuesta: Cual es el problema... - by Juance - 15.07.2014, 02:51

Forum Jump:


Users browsing this thread: 4 Guest(s)