register help
#1

I use LSLRP Gamemode, whenever I get in and register and do /q after that and get in again and type my password, It always says "INCORECT PASS" and I type it right all the time.

In script I just deleted Tutorial, but made it that players can spawn, and added Armor made by Nexotronix, please help
Reply
#2

Check that accounts are be saved in "SERVER_FILE/scriptfiles/AdminScript/Accounts(or User)

and check "password=" line and see whats the password thx
Reply
#3

Use this to create the password.
pawn Код:
adler32_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;
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)