
Originally Posted by
hellrazor
Please answer does this work for mangos!?
especilly the donation and vote system
No, it will not. I applied a simple trick. I just searched through all the scripts for the word: SHA1
Since MaNGOS works with encrypted passwords the script will have to encrypt the users input.
Example how a MaNGOS registration query should look like:
Code:
INSERT INTO `account` (`username`,`sha_pass_hash`) VALUES ('username', SHA1(CONCAT(UPPER('username'),':',UPPER('password'))));
The donation system is also built for ArcEmu.
The script rewards items to a table called "mailbox_insert_queue" Only ArcEmu has that table.
If you know a little scripting it is very easy to adjust.
I hope this answered your question
Bookmarks