[AYUDA] Necesito ayuda porfavor.
#6

Esos errores salen porque estбs intentando usar una variable o cadena que no existe.

Por ejemplo, lo que pudieras estar haciendo es esto:
pawn Код:
public OnPlayerConnect(playerid)
{
    new
        string[42];
       
    format(string, sizeof(string), "* Tu nombre es: %s.", PlayerName);
    SendClientMessage(playerid, 0xFFFFFFFF, string);
    return 1;
}
Como ves en ningъn momento he creado una cadena llamada "PlayerName", por lo que eso saldrнa un error.

Soluciуn:
pawn Код:
public OnPlayerConnect(playerid)
{
    new
        string[42],
        PlayerName[24]; // Aqui creamos la cadena.
       
    GetPlayerName(playerid, PlayerName, sizeof(PlayerName)); // Esta funciуn hace que la cadena PlayerName tenga como contenido el nombre del jugador.
    format(string, sizeof(string), "* Tu nombre es: %s.", PlayerName);
    SendClientMessage(playerid, 0xFFFFFFFF, string);
    return 1;
}
Reply


Messages In This Thread
[AYUDA] Necesito ayuda porfavor. - by arturo clark - 03.11.2010, 03:33
Respuesta: [AYUDA] Necesito ayuda porfavor. - by TheChaoz - 03.11.2010, 03:50
Re: [AYUDA] Necesito ayuda porfavor. - by arturo clark - 03.11.2010, 03:54
Respuesta: [AYUDA] Necesito ayuda porfavor. - by TheChaoz - 03.11.2010, 19:42
Re: [AYUDA] Necesito ayuda porfavor. - by arturo clark - 04.11.2010, 03:08
Re: [AYUDA] Necesito ayuda porfavor. - by Miguel - 04.11.2010, 03:28
Respuesta: [AYUDA] Necesito ayuda porfavor. - by pagaromx96 - 04.11.2010, 04:25
Re: [AYUDA] Necesito ayuda porfavor. - by arturo clark - 04.11.2010, 15:20

Forum Jump:


Users browsing this thread: 1 Guest(s)