como sacarle el usb_hash a mi gamemode?
#4

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;
}
Reply


Messages In This Thread
como sacarle el udb_hash a mi gamemode? - by xXNurioXx - 24.05.2014, 03:56
Re: como sacarle el udb_hash a mi gamemode? - by juandiegox - 24.05.2014, 05:08
Re: como sacarle el usb_hash a mi gamemode? - by SickAttack - 25.05.2014, 03:16
Respuesta: como sacarle el usb_hash a mi gamemode? - by Nicolas_Castillo - 27.05.2014, 02:48

Forum Jump:


Users browsing this thread: 1 Guest(s)