SA-MP Forums Archive
[Ajuda] Erro ao copiar '-' - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [Ajuda] Erro ao copiar '-' (/showthread.php?tid=362967)



Erro ao copiar '-' - OakleyBrasil - 26.07.2012

pawn Код:
C:\Users\USER\Desktop\0.3e\filterscripts\tele.pwn(45) : error 030: compound statement not closed at the end of file (started at line 25)
nгo existe linha 45, por que para na 44 x.x

e como nгo sei nada de inglкs e nгo tenho dicionario e como varias pessoas xingam o ****** tradutor
deixei pra vocкs que sabem . '


Re: Erro ao copiar '-' - FrostGF - 26.07.2012

Quote:
Originally Posted by OakleyBrasil
Посмотреть сообщение
pawn Код:
C:\Users\USER\Desktop\0.3e\filterscripts\tele.pwn(45) : error 030: compound statement not closed at the end of file (started at line 25)
nгo existe linha 45, por que para na 44 x.x

e como nгo sei nada de inglкs e nгo tenho dicionario e como varias pessoas xingam o ****** tradutor
deixei pra vocкs que sabem . '
Estб faltando alguma chave, se vc postar o cуdigo podemos ajudar vocк.


Re: Erro ao copiar '-' - ipsBruno - 26.07.2012

https://sampforum.blast.hk/showthread.php?tid=361455

Veja se ele retorna algum aviso. Isto se o cуdigo nгo for muito grande.


Re: Erro ao copiar '-' - OakleyBrasil - 26.07.2012

pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
new cartype = GetPlayerVehicleID(playerid);
new State=GetPlayerState(playerid);


if (strcmp(cmdtext, "/drif1", true) == 0) {
    SetPlayerInterior(playerid, 0); {
        if (State != PLAYER_STATE_DRIVER) {
            SetPlayerPos(playerid, -302.0343, 1526.2135, 75.3594);
        } else if (IsPlayerInVehicle(playerid, cartype) == 1) {
            SetVehiclePos(cartype, -302.0343, 1526.2135, 75.3594);

            SetVehicleZAngle(cartype, 180.1530);
        } else {
            SetPlayerPos(playerid, -302.0343, 1526.2135, 75.3594);
        }
        static
        buff[80], pn[25];

        GetPlayerName(playerid, pn, sizeof(pn));
        format(buff, sizeof(buff), "%s foi para o drift 1 (/drift1)", pn);
        SendClientMessageToAll(0xFFFF00AA, buff);
        return 1;
    }
so ruim nesses negocios de conferir chaves, mas parece estar certo..
mas se estivesse realmente certo nгo estaria dando erro :\


Re: Erro ao copiar '-' - ipsBruno - 26.07.2012

O site informou estб linha?

Entгo й:
Quote:

public OnPlayerCommandText(playerid, cmdtext[])
{
new cartype = GetPlayerVehicleID(playerid);
new State=GetPlayerState(playerid);


if (strcmp(cmdtext, "/drif1", true) == 0) {
SetPlayerInterior(playerid, 0); {
if (State != PLAYER_STATE_DRIVER) {
SetPlayerPos(playerid, -302.0343, 1526.2135, 75.3594);
} else if (IsPlayerInVehicle(playerid, cartype) == 1) {
SetVehiclePos(cartype, -302.0343, 1526.2135, 75.3594);

SetVehicleZAngle(cartype, 180.1530);
} else {
SetPlayerPos(playerid, -302.0343, 1526.2135, 75.3594);
}
static
buff[80], pn[25];

GetPlayerName(playerid, pn, sizeof(pn));
format(buff, sizeof(buff), "%s foi para o drift 1 (/drift1)", pn);
SendClientMessageToAll(0xFFFF00AA, buff);
return 1;
}

return false;
}




Re: Erro ao copiar '-' - rjjj - 26.07.2012

Consertei o seu cуdigo :


pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
    new cartype = GetPlayerVehicleID(playerid);
    new State = GetPlayerState(playerid);
    if(strcmp(cmdtext, "/drif1", true) == 0)
    {
        SetPlayerInterior(playerid, 0);
        if(State != PLAYER_STATE_DRIVER)
        {
            SetPlayerPos(playerid, -302.0343, 1526.2135, 75.3594);
        }
        else if(IsPlayerInVehicle(playerid, cartype))
        {
            SetVehiclePos(cartype, -302.0343, 1526.2135, 75.3594);
            SetVehicleZAngle(cartype, 180.1530);
        }
        else
        {
            SetPlayerPos(playerid, -302.0343, 1526.2135, 75.3594);
        }
        static buff[80], pn[25];
        GetPlayerName(playerid, pn, sizeof(pn));
        format(buff, sizeof(buff), "%s foi para o drift 1 (/drift1)", pn);
        SendClientMessageToAll(0xFFFF00AA, buff);
        return 1;
    }


Espero ter ajudado .