SA-MP Forums Archive
[ajuda] Erro que nao lembro de ter visto '-' - 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 que nao lembro de ter visto '-' (/showthread.php?tid=296970)



[ajuda] Erro que nao lembro de ter visto '-' - Xpectro - 13.11.2011

Code:
aaaaaaaaa.pwn(56980) : error 001: expected token: ";", but found "-identifier-"
O que seria esse erro ? Nao lembro de como resolve-lo

Code:
stock GetPlayerNameM(playerid) {
    new string[0x3C]
    GetPlayerName(playerid,string,24); ( essa й a maldita linha kk )
    new str[24];
    strmid(str,string,0,strlen(string),24);
    for(new i = 0; i < MAX_PLAYER_NAME; ++i)
    {
        if (str[i] == '_') str[i] = ' ';
    }
    if(PlayerInfo[playerid][pMaskuse] == 1)
    {
        format(string, sizeof(string), "[Mascara %d_68]", PlayerInfo[playerid][pMaskNumber]);
		strmid(str,string,0,strlen(string),60);
	}
    return str;
}
o que estб errado ? Antes de eu usar a funзao GetPlayerNameMasc esse erro nao existia, mas ai tive que usar, e agora ta dando isso, o que faзo ?

Abaixo dessa stock, hб uma bastante semelhante .. Que tem a mesma linha, mas nao da erro, tem algo a ver ?

Code:
stock GetPlayerNameEx(playerid) {
    new string[24];
    GetPlayerName(playerid,string,24);
    new str[24];
    strmid(str,string,0,strlen(string),24);
    for(new i = 0; i < MAX_PLAYER_NAME; ++i)
    {
        if (str[i] == '_') str[i] = ' ';
    }
    return str;
}
Portanto, esse GetPlayerNameEx nгo й usado nenhuma vez no gm, por isso acho que nao da erro ..

Ajuda ? Valeu, abrass


Re: [ajuda] Erro que nao lembro de ter visto '-' - dompetri - 13.11.2011

Code:
stock GetPlayerNameM(playerid) {
    new string[0x3C];
    GetPlayerName(playerid,string,24);
Tente isto.


Re: [ajuda] Erro que nao lembro de ter visto '-' - .Unnamed - 13.11.2011

Vocк eskeceu um ;
como vocк colocou:
pawn Code:
stock GetPlayerNameM(playerid) {
new string[0x3C]
Como deve por:
pawn Code:
stock GetPlayerNameM(playerid) {
    new string[0x3C];



Re: [ajuda] Erro que nao lembro de ter visto '-' - Xpectro - 13.11.2011

kkkkkkkkkkkkkkkkkk pqp, como sou inutil ! Galera, desculpa o topico idiota, falta de atenзгo minha, e era mega facil, mas nao consegui enchergar isso ;x Valeu voces dois ae DD


Re: [ajuda] Erro que nao lembro de ter visto '-' - .Unnamed - 13.11.2011

uahauhauahauh Relaxa, muitas pessoas comentem este equнvoco, atй eu jб cometi, mas antes de postar algo do tipo, revise rigorosamente linha por linha


Re: [ajuda] Erro que nao lembro de ter visto '-' - Joker_OutLock - 16.11.2011

Meu Deus se nгo sober isso pode matar

pawn Code:
new string[0x3C];