Jump to content

Otu

Contributors
  • Posts

    17
  • Joined

  • Last visited

About Otu

  • Birthday 09/07/1992

Profile Information

  • Gender
    Male

Recent Profile Visitors

1,696 profile views

Otu's Achievements

  1. Otu

    New gui

    Thanks! I will remember
  2. Otu

    New gui

    Only in game gui will be further refined and I will make v2 available if someone wants to http://www.ascensiongamedev.com/resources/filehost/60d287393fc17629fb8ca89b87cdbef1.rar Edit: (Character fix) Edit - /Client/resources/gui/InGame.xml change to:
  3. Hey, sorry for my English I wrote a php code that encodes a password in php and wanted to share it. $password = $_POST['YourPassword']; function strToHex($string){ $hex = ''; for ($i=0; $i<strlen($string); $i++){ $ord = ord($string[$i]); $hexCode = dechex($ord); $hex .= substr('0'.$hexCode, -2); } return strToUpper($hex); } $salt = "AD07665AE12767B2B712752595D0E4C16479B01D07E66AF9F9E6081C811C4C21"; //Salt pulled from the database $pass = strToHex(hash('sha256',$password,true)).$salt; $hash = strToHex(hash('sha256',$pass,true));
×
×
  • Create New...