SA-MP Forums Archive
[Ajuda] Qual problema nesse comando? - 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] Qual problema nesse comando? (/showthread.php?tid=570179)



Qual problema nesse comando? - lucasbjs0 - 05.04.2015

galera estou tentando fazer um sistema bбsico de email mais nгo estou conseguindo entгo peзo lhe-s suas ajudas

Код:
if(!strcmp(cmd, "/mudaremail", true))
	{
	    if (gPlayerLogged[playerid] != 0)
	    {
			tmp = strtok(cmdtext, idx);
			if(!strlen(tmp))
			{
				SendClientMessage(playerid, COLOR_RED, "Uso vбlido: /MudarEmail [Novo e-mail]");
				return 1;
			}
			new emails;
			tmp = strtok(cmdtext, idx);
			emails = strval(tmp);
			if (IsPlayerConnected(playerid))
			{
                format(string,64,"Players/%s.ini",PlayerName(playerid));
                JogadorInfo[playerid][pEmail] = emails;
			    format(string, sizeof(string), "E-mail de recuperaзгo alterado com sucesso para: {FF0000}%s{FFFFFF}", emails);
			    SendClientMessage(playerid, COLOR_AZULBB, string);
			    SendClientMessage(playerid, COLOR_LIGHTRED, "Nгo esqueзa do seu novo e-mail!");
			    return 1;
	        }
		}
		else
		{
		    SendClientMessage(playerid, COLOR_RED, "Vocк nгo estб logado.");
		    return 1;
		}
    }



Re: Qual problema nesse comando? - #Luca[S]. - 05.04.2015

Se vocк nгo falar o erro/bug nгo dб pra ajudar, nгo acha?


Re: Qual problema nesse comando? - lucasbjs0 - 05.04.2015

Quote:
Originally Posted by TenhoUmaDuvida
Посмотреть сообщение
Se vocк nгo falar o erro/bug nгo dб pra ajudar, nгo acha?
nгo estб setando o email no pEmail e nгo estб aparecendo o email na SCM "E-mail de recuperaзгo alterado com sucesso para:"


Re: Qual problema nesse comando? - Hardware - 05.04.2015

Remova a verificaзгo de player conectado.

PHP код:
if (IsPlayerConnected(playerid)) 



Re: Qual problema nesse comando? - lucasbjs0 - 05.04.2015

Quote:
Originally Posted by Hardware
Посмотреть сообщение
Remova a verificaзгo de player conectado.

PHP код:
if (IsPlayerConnected(playerid)) 
Ficou assim

pawn Код:
if(!strcmp(cmd, "/mudaremail", true))
    {
        if (gPlayerLogged[playerid] != 0)
        {
            tmp = strtok(cmdtext, idx);
            if(!strlen(tmp))
            {
                SendClientMessage(playerid, COLOR_RED, "Uso vбlido: /MudarEmail [Novo e-mail]");
                return 1;
            }
            new emails;
            emails = strval(tmp);
            format(string,64,"Players/%s.ini",PlayerName(playerid));
            JogadorInfo[playerid][pEmail] = emails;
            format(string, sizeof(string), "E-mail de recuperaзгo alterado com sucesso para: {FF0000}%s{FFFFFF}", emails);
            SendClientMessage(playerid, COLOR_AZULBB, string);
            SendClientMessage(playerid, COLOR_LIGHTRED, "Nгo esqueзa do seu novo e-mail!");
            return 1;
        }
        else
        {
            SendClientMessage(playerid, COLOR_RED, "Vocк nгo estб logado.");
            return 1;
        }
    }



Re: Qual problema nesse comando? - GWMPT - 05.04.2015

strval?

https://sampwiki.blast.hk/wiki/Strval
Leia a definiзгo de strval, e veja o que estб mal no seu cуdigo.
Andar a usar funзхes "porque sim" nгo irб a lado nenhum.


Re: Qual problema nesse comando? - DokyPWN - 05.04.2015

Ainda nгo intendo, por que utilizar strcmp se й muito mas facil usar ZCMD


Re: Qual problema nesse comando? - lucasbjs0 - 06.04.2015

Alguйm?


Re: Qual problema nesse comando? - Hardware - 06.04.2015

Cara, a questгo aн foi a que o GWMPT disse e que eu nгo percebi inicialmente. Nгo podes usar strval neste caso, pois ela converte uma string em um nъmero inteiro, que neste caso nгo serve.
PHP код:
 emails strval(tmp); 
Eu nгo uso strtok a muito tempo, inclusive recomendo usar outros meios para isso, como ZCMD e SSCANF. Contudo, hб uma funзгo feita para lidar com texto, chamada strrest.
Dк uma pesquisada de como usб-la e aplicб-la em seu comando. Caso nгo consiga, fique а vontade para me perguntar ou mandar PM.


Re: Qual problema nesse comando? - ProKillerpa - 06.04.2015

Verifique tambйm se na Enum JogadorInfo, pEmail й uma string.

PHP код:
JogadorInfo[playerid][pEmail