SA-MP Forums Archive
[Ajuda] Encriptador - 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] Encriptador (/showthread.php?tid=395360)



Encriptador - Vinicius_TroLL - 25.11.2012

Alguem me manda um encriptador de senha que funcione...E me explique onde devo colocar por favor pessoal ja tentei varios e nenhum deu certo Tentei Esse e Essemais nenhum funfo



Re: Encriptador - Vinicius_TroLL - 25.11.2012

@Upp


Respuesta: Encriptador - Parka - 25.11.2012

PHP код:
#include <dudb>
new encriptador udb_hash(params); 



Re: Encriptador - Petrick™ - 25.11.2012

Quote:
Originally Posted by Vinicius_TroLL
Посмотреть сообщение
@Upp
Vai msn quero falar com tigo.


Re: Respuesta: Encriptador - TreePuncher - 25.11.2012

Quote:
Originally Posted by cesar_******
Посмотреть сообщение
PHP код:
#include <dudb>
new encriptador udb_hash(params); 
Isso sу encripta simbolos como [ e ] -.-


Re: Encriptador - [JD]BlackFire - 25.11.2012

um negуcio assim serve
pawn Код:
EncriptarSaporra(string[]){
    for(new i; i< strlen(string); i++){
    if(string[i] == "a" || string[i] == "e" || string[i] == "i" || string[i] == "o" || string[i] == "u"){
        strins(string,"&vgb$2@brdduhaw><nbwh?",i);
    }
    return string;
}



Re: Encriptador - Vinicius_TroLL - 25.11.2012

N deu me ajudem ai please


Re: Encriptador - Schocc - 26.11.2012

Quais includes vc usa todas!


Re: Encriptador - Tiu_DaColombia - 26.11.2012

tambйm preciso, up.


Re: Encriptador - @LucasVinicius - 26.11.2012

stock Encriptar(texto[]) // Encriptando
{
new SenhaEncriptada[100];
for(new x = 0; x <= strlen(texto); x++)
{
SenhaEncriptada[x] = (texto[x] * 2);
}
return SenhaEncriptada;
}

stock Desencriptar(texto[]) // Desencriptando
{
new Senha[100];
for(new x = 0; x <= strlen(texto); x++)
{
Senha[x] = (texto[x] / 2);
}
return Senha;
}

se eu ajudei , +rep por favor