Re: Neuz.exe White Screen
inside the /resource folder you must merge new datasubs. There are plenty of explanations. Next time use the search button
Re: Neuz.exe White Screen
maybe something is lacking on your resource merging not sure ^^ try to double check your files
Re: Neuz.exe White Screen
Quote:
Originally Posted by
raventh1984
inside the /resource folder you must merge new datasubs. There are plenty of explanations. Next time use the search button
thanks it works, my problem now is (login details is incorrect)
Re: Neuz.exe White Screen
Quote:
Originally Posted by
kevin105
thanks it works, my problem now is (login details is incorrect)
Did you use the right salt when creating your password for the account you made?
Re: Neuz.exe White Screen
Quote:
Originally Posted by
๖̶̶̶ۣۜDetox
Did you use the right salt when creating your password for the account you made?
in my database i have already account i think its old i just change the password there with md5..
i follow this
Code:
3. now add a user name that you want in between the single quotes 'user'.
4. to create a password you will need to use MD5 hash heres the link. Salt Hashing password link: md5 - cryptographic PHP functions - functions-online
5. in the $String box on the MD5 website type patom+passowrd and click run. should look like this if your using the password kabbage (patomkabbage).
6. int he results you will see a long number that looks like this 8d17235151cd4884c3596115a1d7d966, this is your hash password copy it and paste it in between the single quotes in the password section.
Re: Neuz.exe White Screen
Are you using the files that has patom as the salt though?
MD5 Generator :: md5.net
Use that, insert the salt+password.
Example = patomtest
Password = test
Re: Neuz.exe White Screen
Quote:
Originally Posted by
๖̶̶̶ۣۜDetox
Are you using the files that has patom as the salt though?
MD5 Generator :: md5.net
Use that, insert the salt+password.
Example = patomtest
Password = test
i slightly didnt get about it,
when i entered string in md5 generator example i want password kevin so i will put in string to generate was "patomkevin"?
then i need to use password in client to put is kevin only?
am i right?
btw i use audisbroder files
Re: Neuz.exe White Screen
Yes that's correct. You put in "patomkevin" ( without "" ) into the md5 generator, and then you use kevin as your password.
Re: Neuz.exe White Screen
Quote:
Originally Posted by
๖̶̶̶ۣۜDetox
Yes that's correct. You put in "patomkevin" ( without "" ) into the md5 generator, and then you use kevin as your password.
ok thanks i will try it :)
i will post here what's relust :)
this is right?
Code:
USE [ACCOUNT_DBF]
GO
DECLARE @return_value int
EXEC @return_value = [dbo].[createaccount]
@account = N'wingz',
@password = N'cb0dd2508fe9a95f3a99f02e60ee724a'
SELECT 'Return Value' = @return_value
GO
thanks a lot its working i can enter now into my game :thumbup:
Re: Neuz.exe White Screen