
Originally Posted by
The Interview
Server Files = 100% done
Client Files = 35% done
Register File = 70% done
Did you manage to fix the 'Please try again' error?
Also, for creating an account use this sql query:
Code:
INSERT INTO [age_account].[dbo].[accounts]
([uid]
,[name]
,[pass]
,[created]
,[updated])
VALUES
(userid
,'username'
,'hashedpass'
,'creationtime'
,NULL)
GO
Example:
Code:
INSERT INTO [age_account].[dbo].[accounts]
([uid]
,[name]
,[pass]
,[created]
,[updated])
VALUES
(50000
,'testerdave1337'
,'$2a$10$6a64a60418f63acd895aeuC0MVfsH0TwA3CFSPFESLtWX.Znz76Ha'
,'2015-04-12 16:18:49.540'
,NULL)
GO
user: testerdave1337
pass: test
Use this to hash the password: http://snipplr.com/view/66073/passwo...asswords-safe/
Credits for supergoudvis for the great find.