26.06.2015, 09:23
Hello,
i want to ask you that how can i fix it ?
and the line of code 52
Thank you if you hepled me
i want to ask you that how can i fix it ?
Код:
52) : error 021: symbol already defined: "udb_hash"
Код:
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; }