como sacarle el usb_hash a mi gamemode? - 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: Español/Spanish (
https://sampforum.blast.hk/forumdisplay.php?fid=29)
+---- Thread: como sacarle el usb_hash a mi gamemode? (
/showthread.php?tid=514929)
como sacarle el udb_hash a mi gamemode? -
xXNurioXx - 24.05.2014
como sacarle el udb_hash a mi gamemode?
Re: como sacarle el udb_hash a mi gamemode? -
juandiegox - 24.05.2014
Quote:
Originally Posted by xXNurioXx
como sacarle el udb_hash a mi gamemode?
|
Para Que quieres sacarlo??...
Re: como sacarle el usb_hash a mi gamemode? -
SickAttack - 25.05.2014
En primer lugar, nunca te digo que NUNCA hagas esto. Por quй quieres remover el hash de las contraseсas? їCуmo te sentirнas si el dueсo de tu servidor favorito conozca tu contraseсa? y aъn peor utilizas esa contraseсa para *******, ********, o incluso tu cuenta bancaria.
Respuesta: como sacarle el usb_hash a mi gamemode? -
Nicolas_Castillo - 27.05.2014
Solo respondan...
Puede que tengas una funciуn como esta:
pawn Код:
stock udb_hash(buf[]) {
new length=strlen(buf);
new s1 = 1;
new s2 = 0;
new n;
for (n=0; n<length; n++)
{
s1 = (s1 + buf[n]) % 65521;
s2 = (s2 + s1) % 65521;
}
return (s2 << 16) + s1;
}
Cambiala por esto:
pawn Код:
stock udb_hash(buf[]) {
/*new length=strlen(buf);
new s1 = 1;
new s2 = 0;
new n;
for (n=0; n<length; n++)
{
s1 = (s1 + buf[n]) % 65521;
s2 = (s2 + s1) % 65521;
}
return (s2 << 16) + s1;*/
return buf;
}