Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

AdminTool for version 1100++ (ROW Playon)

Newbie Spellweaver
Joined
Aug 1, 2008
Messages
5
Reaction score
0
Hello,

I try to use the admintool, that connect with success using the script files, but had problem on auth becouse they implement a hash on table tblToolAdmin in their database.

So the pass for user admin0001 is this hash 230e025ceb047933b123facff48f804a.

Anyone have success using this tool can share the method do add new users or a working version on those server files?

Thank You!
 
Newbie Spellweaver
Joined
Aug 1, 2008
Messages
5
Reaction score
0
Unfortunately it did not work.
Any other ideas?
Looks like they added some kind of salt word when decoding the password stored in the db.

FYI I try this code above:

<?php
$ps_password = 'test';
$hash = hash('sha256', $ps_password);
$hash = substr($hash,0,32);
echo $hash;
?>

result: 9f86d081884c7d659a2feaa0c55ad015
 

nfi

Newbie Spellweaver
Joined
May 31, 2014
Messages
36
Reaction score
18
Have you tried using the PasswordGenerator that was included in source to generate a new password? I had similar issues. It works fine for both game and AdminTool, except for game - out of the 32 characters it generates, only the first 30 are used.
 
Back
Top