Jump to content

[Help] Accounts & Chars Transfer


Recommended Posts

Posted

I use arcemu core, But I was wanting to switch to mangos ...

How could I transfer the accounts and the chars to mangos db...

Has some way to transfer without losing chares, itens and accounts ???

Posted
try searching, there's already scripts and a few pdumps in this forum as well as many helpful threads that have all the info you need :D

my problem is the pass, what i need make for convert to mangos pass

Posted

if in arcemu pass is encrypted you can do a php script for password recovery. Request could be sent to user's mail with an ack link to complete che password recovery...

Posted

If the passwords are not encrypted you can use this php function to convert them:

function sha_password($user,$pass){
 $user = strtoupper($user);
 $pass = strtoupper($pass);
 return SHA1($user.':'.$pass);
}

Posted

IF its not encrypted u can do that directly with mysql, no need to use php for that

it would be something like:

UPDATE `account` SET `sha_pass_hash`=SHA1(CONCAT(UPPER(`username`),':',UPPER(`sha_pass_hash`)));

if its encrypted and its not SHA1, forget it not possible AFAIK, u would to force ppl to reset passwords

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. Privacy Policy Terms of Use